Mercurial > dive4elements > gnv-client
annotate gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/GNVArtifactsTestSuite.java @ 469:62fc63d0f71d
Added a new State in Product Verticalprofile in Timeseriespoints.
Now it will be displayed the Years where measurements happened and than only the dates of the chosen Year will be fetched and displayed.
gnv-artifacts/trunk@532 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Tue, 12 Jan 2010 12:42:53 +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 } |