001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * If you wish your version of this file to be governed by only the CDDL
025: * or only the GPL Version 2, indicate your decision by adding
026: * "[Contributor] elects to include this software in this distribution
027: * under the [CDDL or GPL Version 2] license." If you do not indicate a
028: * single choice of license, a recipient has the option to distribute
029: * your version of this file under either the CDDL, the GPL Version 2 or
030: * to extend the choice of license to its licensees as provided above.
031: * However, if you add GPL Version 2 code and therefore, elected the GPL
032: * Version 2 license, then the option applies only if the new code is
033: * made subject to such option by the copyright holder.
034: *
035: * Contributor(s):
036: *
037: * Portions Copyrighted 2007 Sun Microsystems, Inc.
038: */
039:
040: package org.netbeans.modules.ws.qaf;
041:
042: import junit.framework.Test;
043: import junit.framework.TestSuite;
044: import junit.textui.TestRunner;
045: import org.netbeans.junit.NbTestCase;
046: import org.netbeans.junit.NbTestSuite;
047:
048: /**
049: *
050: * @author lukas
051: */
052: public class FullWsValidation extends NbTestCase {
053:
054: public FullWsValidation(String name) {
055: super (name);
056: }
057:
058: public static Test suite() {
059: TestSuite suite = new NbTestSuite();
060: suite.addTest(new WsValidation("testCreateNewWs")); //NOI18N
061: suite.addTest(new WsValidation("testAddOperation")); //NOI18N
062: suite.addTest(new WsValidation("testStartServer")); //NOI18N
063: suite.addTest(new WsValidation("testWsHandlers")); //NOI18N
064: suite.addTest(new WsValidation("testDeployWsProject")); //NOI18N
065: suite.addTest(new WsValidation("testCreateWsClient")); //NOI18N
066: suite.addTest(new WsValidation("testCallWsOperationInServlet")); //NOI18N
067: suite.addTest(new WsValidation("testCallWsOperationInJSP")); //NOI18N
068: suite
069: .addTest(new WsValidation(
070: "testCallWsOperationInJavaClass")); //NOI18N
071: suite.addTest(new WsValidation("testWsClientHandlers")); //NOI18N
072: suite.addTest(new WsValidation("testDeployWsClientProject")); //NOI18N
073: suite.addTest(new EjbWsValidation("testCreateNewWs")); //NOI18N
074: suite.addTest(new EjbWsValidation("testAddOperation")); //NOI18N
075: suite.addTest(new EjbWsValidation("testWsHandlers")); //NOI18N
076: suite.addTest(new EjbWsValidation("testDeployWsProject")); //NOI18N
077: suite.addTest(new EjbWsValidation("testCreateWsClient")); //NOI18N
078: suite.addTest(new EjbWsValidation(
079: "testCallWsOperationInSessionEJB")); //NOI18N
080: suite.addTest(new EjbWsValidation(
081: "testCallWsOperationInJavaClass")); //NOI18N
082: suite.addTest(new EjbWsValidation(
083: "testWsFromEJBinClientProject")); //NOI18N
084: suite.addTest(new EjbWsValidation("testWsClientHandlers")); //NOI18N
085: suite.addTest(new EjbWsValidation("testDeployWsClientProject")); //NOI18N
086: suite.addTest(new AppClientWsValidation("testCreateWsClient")); //NOI18N
087: suite.addTest(new AppClientWsValidation(
088: "testCallWsOperationInJavaMainClass")); //NOI18N
089: suite.addTest(new AppClientWsValidation(
090: "testCallWsOperationInJavaClass")); //NOI18N
091: suite
092: .addTest(new AppClientWsValidation(
093: "testWsClientHandlers")); //NOI18N
094: suite.addTest(new AppClientWsValidation(
095: "testRunWsClientProject")); //NOI18N
096: suite.addTest(new JavaSEWsValidation("testCreateWsClient")); //NOI18N
097: suite.addTest(new JavaSEWsValidation(
098: "testCallWsOperationInJavaMainClass")); //NOI18N
099: suite.addTest(new JavaSEWsValidation("testFixClientLibraries")); //NOI18N
100: suite.addTest(new JavaSEWsValidation("testWsClientHandlers")); //NOI18N
101: suite.addTest(new JavaSEWsValidation("testRunWsClientProject")); //NOI18N
102: suite.addTest(new WsValidation("testUndeployProjects")); //NOI18N
103: suite.addTest(new EjbWsValidation("testUndeployProjects")); //NOI18N
104: suite.addTest(new AppClientWsValidation(
105: "testUndeployClientProject")); //NOI18N
106: suite.addTest(new WsValidation("testStopServer")); //NOI18N
107: return suite;
108: }
109:
110: public static void main(String... args) {
111: TestRunner.run(suite());
112: }
113: }
|