1   /*
2    * $Id: StructureTest.java 1309 2009-05-22 18:56:38Z andreas.hoheisel@first.fraunhofer.de $
3    *
4    * Copyright (c) 2005, The K-Wf Grid Consortium
5    * Fraunhofer Institute for Computer Architecture and Software Technology
6    * See http://www.kwfgrid.eu and http://www.first.fraunhofer.de for more details.
7    */
8   
9   
10  package net.kwfgrid.gworkflowdl;
11  
12  import junit.framework.Test;
13  import junit.framework.TestSuite;
14  
15  
16  public final class StructureTest extends AbstractTestCase {
17      /***
18       * Create the test case.
19       *
20       * @param testName name of the test case
21       */
22      public StructureTest(String testName) {
23          super(testName);
24      }
25  
26      /***
27       * @return the suite of tests being tested
28       */
29      public static Test suite() {
30          TestSuite testSuite = new TestSuite();
31  
32          testSuite.addTest(TokenTest.suite());
33          testSuite.addTest(PlaceTest.suite());
34          testSuite.addTest(PlaceJdomTest.suite());
35          testSuite.addTest(EdgeTest.suite());
36  
37          testSuite.addTest(OperationCandidateTest.suite());
38  
39          testSuite.addTest(OperationClassTest.suite());
40          testSuite.addTest(OperationClassJdomTest.suite());
41  
42          testSuite.addTest(OperationTest.suite());
43          testSuite.addTest(OperationJdomTest.suite());
44  
45          testSuite.addTest(TransitionTest.suite());
46          testSuite.addTest(WorkflowTest.suite());
47  
48          testSuite.addTest(WeatherForecast.suite());
49          testSuite.addTest(XSDUseTest.suite());
50  
51          return testSuite;
52      }
53  
54  
55      /***
56       * Rigourous Test :-).
57       */
58      public void testApp() {
59  
60      }
61  }