2009/05/20 - Apache Shale has been retired.

For more information, please explore the Attic.

View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to you under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   *
17   * $Id: WelcomeTestCase.java 464373 2006-10-16 04:21:54Z rahul $
18   */
19  
20  package org.apache.shale.blank.systest;
21  
22  import java.util.ResourceBundle;
23  import junit.framework.Test;
24  import junit.framework.TestSuite;
25  import org.apache.shale.test.cargo.CargoTestSetup;
26  import org.apache.shale.test.htmlunit.AbstractHtmlUnitTestCase;
27  
28  /***
29   * <p>System test case for the <code>/welcome.jsp</code> page.</p>
30   */
31  public class WelcomeTestCase extends AbstractHtmlUnitTestCase {
32      
33  
34      // ------------------------------------------------------------ Constructors
35  
36  
37      /***
38       * <p>Construct a new instance of this test case.</p>
39       *
40       * @param name Name of the new test case
41       */
42      public WelcomeTestCase(String name) {
43  
44          super(name);
45  
46      }
47  
48  
49      // ------------------------------------------------------ Instance Variables
50  
51  
52      private ResourceBundle bundle =
53              ResourceBundle.getBundle("org.apache.shale.blank.Bundle");
54  
55  
56      // ------------------------------------------------------ Test Setup Methods
57  
58  
59      /***
60       * <p>Set up the instance variables required for this test case.</p>
61       */
62      protected void setUp() throws Exception {
63  
64          super.setUp();
65          page("/");
66  
67      }
68  
69  
70      /***
71       * <p>Return the set of tests included in this test suite.</p>
72       */
73      public static Test suite() {
74  
75          return new CargoTestSetup(new TestSuite(WelcomeTestCase.class));
76  
77      }
78  
79  
80      /***
81       * <p>Tear down instance variables required by this test case.</p>
82       */
83      protected void tearDown() throws Exception {
84  
85          super.tearDown();
86  
87      }
88  
89  
90  
91      // ------------------------------------------------- Individual Test Methods
92  
93  
94      // Test a pristine instance of this page
95      public void testPristine() throws Exception {
96  
97          assertEquals(bundle.getString("welcome.title"), title());
98  
99      }
100 
101 
102 }