Source code: org/miamm/soapmmil/util/UtilSuite.java
1 package org.miamm.soapmmil.util;
2
3
4
5
6 // JUnitDoclet begin import
7 // JUnitDoclet end import
8
9 /**
10 * Generated by JUnitDoclet, a tool provided by
11 * ObjectFab GmbH under LGPL.
12 * Please see www.junitdoclet.org, www.gnu.org
13 * and www.objectfab.de for informations about
14 * the tool, the licence and the authors.
15 */
16
17
18 public class UtilSuite
19 // JUnitDoclet begin extends_implements
20 // JUnitDoclet end extends_implements
21 {
22 // JUnitDoclet begin class
23 // JUnitDoclet end class
24
25 public static junit.framework.TestSuite suite() {
26
27 junit.framework.TestSuite suite;
28
29 suite = new junit.framework.TestSuite("org.miamm.soapmmil.util");
30
31 suite.addTestSuite(org.miamm.soapmmil.util.ReaderWriterTest.class);
32
33
34
35 // JUnitDoclet begin method suite
36 // JUnitDoclet end method suite
37
38 return suite;
39 }
40
41 public static void main(String[] args) {
42 // JUnitDoclet begin method testsuite.main
43 junit.textui.TestRunner.run(suite());
44 // JUnitDoclet end method testsuite.main
45 }
46 }