Mercurial > dive4elements > gnv-client
annotate gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/GNVArtifactsTestSuite.java @ 605:e8ebdbc7f1e3
First step of removing the cache blob. The static part of the describe document will be created by using the input data stored at each state. Some TODOs left (see ChangeLog).
gnv-artifacts/trunk@671 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Tue, 09 Feb 2010 14:27:55 +0000 |
parents | bdbca6022cf5 |
children | f953c9a559d8 |
rev | line source |
---|---|
460
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
1 package de.intevation.gnv.artifacts; |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
2 |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
3 import junit.framework.Test; |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
4 import junit.framework.TestSuite; |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
5 |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
6 public class GNVArtifactsTestSuite { |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
7 |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
8 public static Test suite() { |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
9 TestSuite suite = new TestSuite("Test for de.intevation.gnv.artifacts"); |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
10 suite.addTestSuite(TimeSeriesPointTimeSeriesTestCase.class); |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
11 suite.addTestSuite(MeshVerticalProfileTestCase.class); |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
12 suite.addTestSuite(MeshHorizontalProfileTestCase.class); |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
13 suite.addTestSuite(MeshHorizontalCrossSectionTestCase.class); |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
14 suite.addTestSuite(MeshTimeSeriesTestCase.class); |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
15 suite.addTestSuite(TimeSeriesPointVerticalProfileTestCase.class); |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
16 suite.addTestSuite(MeshVerticalCrossSectionTestCase.class); |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
17 suite.addTestSuite(InstantaneousPointHorizontalProfileTestCase.class); |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
18 suite.addTestSuite(InstantaneousPointVerticalProfileTestCase.class); |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
19 return suite; |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
20 } |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
21 |
bdbca6022cf5
Modified Testcases that they work using the ARCSDE 9.2
Tim Englich <tim.englich@intevation.de>
parents:
diff
changeset
|
22 } |