KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > j2ee > wizard > MultiSrcRootModsWizardsTest


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 /*
20  * MultiSrcRootModsWizardsTest.java
21  *
22  * Created on July 21, 2005, 12:29 AM
23  *
24  * To change this template, choose Tools | Options and locate the template under
25  * the Source Creation and Management node. Right-click the template and choose
26  * Open. You can then make changes to the template in the Source Editor.
27  */

28
29 package org.netbeans.test.j2ee.wizard;
30
31 import junit.framework.Test;
32 import junit.framework.TestSuite;
33 import org.netbeans.junit.NbTestCase;
34 import org.netbeans.junit.NbTestSuite;
35
36 /**
37  *
38  * @author jungi
39  */

40 public class MultiSrcRootModsWizardsTest extends NbTestCase {
41     
42     /** Creates a new instance of MultiSrcRootModsWizardsTest */
43     public MultiSrcRootModsWizardsTest(String JavaDoc s) {
44         super(s);
45     }
46     
47     public static void main(java.lang.String JavaDoc[] args) {
48         junit.textui.TestRunner.run(suite());
49     }
50     
51     public static Test suite() {
52         TestSuite suite = new NbTestSuite();
53         suite.addTest(new NewFileWizardsTest("testOpenEjbMultiRootProject"));
54         suite.addTest(new NewFileWizardsTest("testMultiLocalSessionBean"));
55         suite.addTest(new NewFileWizardsTest("testMultiRemoteSessionBean"));
56         suite.addTest(new NewFileWizardsTest("testMultiLocalRemoteSessionBean"));
57         suite.addTest(new NewFileWizardsTest("testMultiLocalStatefulSessionBean"));
58         suite.addTest(new NewFileWizardsTest("testMultiRemoteStatefulSessionBean"));
59         suite.addTest(new NewFileWizardsTest("testMultiLocalRemoteStatefulSessionBean"));
60         suite.addTest(new NewFileWizardsTest("testMultiLocalEntityBean"));
61         suite.addTest(new NewFileWizardsTest("testMultiRemoteEntityBean"));
62         suite.addTest(new NewFileWizardsTest("testMultiLocalRemoteEntityBean"));
63         suite.addTest(new NewFileWizardsTest("testMultiQueueMdbBean"));
64         suite.addTest(new NewFileWizardsTest("testMultiTopicMdbBean"));
65         suite.addTest(new NewFileWizardsTest("testMultiNewWebSvcWizardInEjb"));
66         suite.addTest(new NewFileWizardsTest("testMultiMsgHandlerInEjb"));
67         suite.addTest(new NewFileWizardsTest("testMultiWSDLinEjb"));
68         suite.addTest(new NewFileWizardsTest("testMultiServiceLocatorInEjb"));
69         suite.addTest(new NewFileWizardsTest("testMultiCachingServiceLocatorInEjb"));
70         suite.addTest(new NewFileWizardsTest("testBuildEjbMultiRootProject"));
71
72         suite.addTest(new NewFileWizardsTest("testOpenWebMultiRootProject"));
73         suite.addTest(new NewFileWizardsTest("testMultiNewWebSvcWizardInWeb"));
74         suite.addTest(new NewFileWizardsTest("testMultiMsgHandlerInWeb"));
75         suite.addTest(new NewFileWizardsTest("testMultiWSDLinWeb"));
76         suite.addTest(new NewFileWizardsTest("testMultiServiceLocatorInWeb"));
77         suite.addTest(new NewFileWizardsTest("testMultiCachingServiceLocatorInWeb"));
78         suite.addTest(new NewFileWizardsTest("testBuildWebMultiRootProject"));
79         
80         return suite;
81     }
82     
83 }
84
Popular Tags