Mercurial > dive4elements > gnv-client
annotate gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/GNVArtifactsTestSuite.java @ 1104:5207d09e4af6
Fixed range calculation for y-axes in the base chart class (issue233).
gnv-artifacts/trunk@1234 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 28 Jun 2010 16:48:03 +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 } |