You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-commits@ws.apache.org by wi...@apache.org on 2005/10/06 18:01:36 UTC

svn commit: r306785 - /webservices/muse/trunk/client/src/test/org/apache/ws/client/muse/client/impl/AllTests.java

Author: wire
Date: Thu Oct  6 09:01:19 2005
New Revision: 306785

URL: http://svn.apache.org/viewcvs?rev=306785&view=rev
Log:
test

Added:
    webservices/muse/trunk/client/src/test/org/apache/ws/client/muse/client/impl/AllTests.java

Added: webservices/muse/trunk/client/src/test/org/apache/ws/client/muse/client/impl/AllTests.java
URL: http://svn.apache.org/viewcvs/webservices/muse/trunk/client/src/test/org/apache/ws/client/muse/client/impl/AllTests.java?rev=306785&view=auto
==============================================================================
--- webservices/muse/trunk/client/src/test/org/apache/ws/client/muse/client/impl/AllTests.java (added)
+++ webservices/muse/trunk/client/src/test/org/apache/ws/client/muse/client/impl/AllTests.java Thu Oct  6 09:01:19 2005
@@ -0,0 +1,51 @@
+/*=============================================================================*
+ *  Copyright 2004 The Apache Software Foundation
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ *=============================================================================
+ */
+package org.apache.ws.client.muse.client.impl;
+
+import org.apache.ws.client.muse.client.impl.lifetime.LifetimeEnabledResourceImplTest;
+import org.apache.ws.client.muse.client.impl.notification.ChangeNotificationImplTest;
+import org.apache.ws.client.muse.client.impl.notification.NotificationImplTest;
+import org.apache.ws.client.muse.client.impl.notification.NotifyableResourceTest;
+import org.apache.ws.client.muse.client.impl.notification.SituationImplTest;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+/**This class is meant to be one unit test that can launch all defined
+ * unit tests for this project.  This suite helps to determine if shared
+ * component changes have broken any tests. 
+ * 
+ * @author Simeon
+ *
+ */
+public class AllTests extends TestSuite {
+
+	/* Add every unit test class to this suite.
+	 */
+	public static Test suite() {
+	    TestSuite suite= new TestSuite();
+	    suite.addTestSuite(ManageableResourceImplTest.class);
+	    suite.addTestSuite(ChangeNotificationImplTest.class);
+	    suite.addTestSuite(NotificationImplTest.class);
+	    suite.addTestSuite(NotifyableResourceTest.class);
+	    suite.addTestSuite(SituationImplTest.class);
+	    //This test must be run last as it destroys the Resource
+	    //TODO: refactor the below test so that it gets it's own Axis instance
+	    suite.addTestSuite(LifetimeEnabledResourceImplTest.class);
+	    return suite;
+	}
+}