KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > adwt > action > US_en_ActionTest


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
4  * Distributable under LGPL license.
5  * See terms of license at www.gnu.org.
6  */

7 package test.adwt.action;
8
9 import java.util.Locale JavaDoc;
10
11 /**
12  * @author Laurent Etiemble
13  * @version $Revision: 1.1 $
14  */

15 public class US_en_ActionTest extends ActionTest
16 {
17    /** Constructor for the ActionTest object */
18    public US_en_ActionTest()
19    {
20       super();
21    }
22
23
24    /**
25     * Constructor for the ActionTest object
26     *
27     * @param name Description of the Parameter
28     */

29    public US_en_ActionTest(String JavaDoc name)
30    {
31       super(name);
32    }
33
34
35    /** A unit test for JUnit */
36    public void testInstantiation()
37    {
38       Locale JavaDoc locale = new Locale JavaDoc("", "");
39       this.doTestInstantiation(locale);
40    }
41 }
42
Popular Tags