KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > badWSDL > PackageTests


1 package test.badWSDL;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 /**
7  */

8 public class PackageTests
9 {
10     public static void main (String JavaDoc[] args) {
11             junit.textui.TestRunner.run (suite());
12     }
13
14     public static Test suite()
15     {
16         TestSuite suite = new TestSuite("All bad WSDL tests");
17
18         suite.addTest(WSDL2JavaFailuresTestCase.suite());
19         return suite;
20     }
21 }
22
Popular Tags