# HG changeset patch # User Tim Englich # Date 1257503035 0 # Node ID a610c0a01afcf05e34231c8b50d4b16724d453a7 # Parent d53f15c33f89dd8a9a329de8d03472fae4ae70e3 Added the Region-Filter to the Workflow of the Artifacttescases to be able to test it automatically. gnv-artifacts/trunk@297 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/ChangeLog --- a/gnv-artifacts/ChangeLog Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/ChangeLog Fri Nov 06 10:23:55 2009 +0000 @@ -1,3 +1,20 @@ +2009-11-06 Tim Englich + + * src/test/java/de/intevation/gnv/artifacts/GNVArtifactsTestCase.java: + Added and moved Workflowsteps because of changes in the Workflow of these Artifacts. + Now the Region-Filter is added to the Workflow an can be tested using + this UnitTestCases. + + * src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_*.xml, + src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_*.xml, + src/test/ressources/timeseries/timeseries_step_*.xml, + src/test/ressources/timeseries_mesh/timeseries_step_*.xml, + src/test/ressources/verticalprofile/verticalprofile_step_*.xml, + src/test/ressources/verticalprofile_mesh/verticalprofile_step_*.xml, + Added and moved Files because of changes in the Workflow of these Artifacts. + Now the Region-Filter is added to the Workflow an can be tested using + the UnitTestCases. + 2009-11-06 Ingo Weinzierl * doc/conf/products/horizontalcrosssection/conf_mesh.xml, diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/GNVArtifactsTestCase.java --- a/gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/GNVArtifactsTestCase.java Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/GNVArtifactsTestCase.java Fri Nov 06 10:23:55 2009 +0000 @@ -122,6 +122,15 @@ cc, "src/test/ressources/timeseries/timeseries_step_04_feed.xml", "src/test/ressources/timeseries/timeseries_step_04_advance.xml", describeDocument); + + // Fünfter Schritt + this + .doNextStep( + artifact, + cc, + "src/test/ressources/timeseries/timeseries_step_05_feed.xml", + "src/test/ressources/timeseries/timeseries_step_05_advance.xml", describeDocument); + Document outputData; // Fünfter Schritt @@ -134,12 +143,12 @@ artifact .feed( this - .readDocument("src/test/ressources/timeseries/timeseries_step_05_feed.xml"), + .readDocument("src/test/ressources/timeseries/timeseries_step_06_feed.xml"), cc); artifact .out( this - .readDocument("src/test/ressources/timeseries/timeseries_step_05_out.xml"), + .readDocument("src/test/ressources/timeseries/timeseries_step_06_out.xml"), fos, cc); } catch (Exception e) { log.error(e, e); @@ -251,8 +260,16 @@ cc, "src/test/ressources/timeseries_mesh/timeseries_step_06_feed.xml", "src/test/ressources/timeseries_mesh/timeseries_step_06_advance.xml", describeDocument); - + // Siebter Schritt + this + .doNextStep( + artifact, + cc, + "src/test/ressources/timeseries_mesh/timeseries_step_07_feed.xml", + "src/test/ressources/timeseries_mesh/timeseries_step_07_advance.xml", describeDocument); + + // Achter Schritt Document outputData = artifact.describe(describeDocument,cc); FileOutputStream fos = null; FileOutputStream fos2 = null; @@ -270,22 +287,22 @@ artifact .feed( this - .readDocument("src/test/ressources/timeseries_mesh/timeseries_step_07_feed.xml"), + .readDocument("src/test/ressources/timeseries_mesh/timeseries_step_08_feed.xml"), cc); artifact .out( this - .readDocument("src/test/ressources/timeseries_mesh/timeseries_step_07_out_statistics.xml"), + .readDocument("src/test/ressources/timeseries_mesh/timeseries_step_08_out_statistics.xml"), fos2, cc); artifact .out( this - .readDocument("src/test/ressources/timeseries_mesh/timeseries_step_07_out_chart.xml"), + .readDocument("src/test/ressources/timeseries_mesh/timeseries_step_08_out_chart.xml"), fos, cc); artifact .out( this - .readDocument("src/test/ressources/timeseries_mesh/timeseries_step_07_out_csv.xml"), + .readDocument("src/test/ressources/timeseries_mesh/timeseries_step_08_out_csv.xml"), fos3, cc); } catch (Exception e) { log.error(e, e); @@ -355,6 +372,14 @@ cc, "src/test/ressources/verticalprofile/verticalprofile_step_04_feed.xml", "src/test/ressources/verticalprofile/verticalprofile_step_04_advance.xml", describeDocument); + + // Fünfter Schritt + this + .doNextStep( + artifact, + cc, + "src/test/ressources/verticalprofile/verticalprofile_step_05_feed.xml", + "src/test/ressources/verticalprofile/verticalprofile_step_05_advance.xml", describeDocument); // Vierter Schritt @@ -375,22 +400,22 @@ artifact .feed( this - .readDocument("src/test/ressources/verticalprofile/verticalprofile_step_05_feed.xml"), + .readDocument("src/test/ressources/verticalprofile/verticalprofile_step_06_feed.xml"), cc); artifact .out( this - .readDocument("src/test/ressources/verticalprofile/verticalprofile_step_05_out_statistics.xml"), + .readDocument("src/test/ressources/verticalprofile/verticalprofile_step_06_out_statistics.xml"), fos2, cc); artifact .out( this - .readDocument("src/test/ressources/verticalprofile/verticalprofile_step_05_out_chart.xml"), + .readDocument("src/test/ressources/verticalprofile/verticalprofile_step_06_out_chart.xml"), fos, cc); artifact .out( this - .readDocument("src/test/ressources/verticalprofile/verticalprofile_step_05_out_csv.xml"), + .readDocument("src/test/ressources/verticalprofile/verticalprofile_step_06_out_csv.xml"), fos3, cc); } catch (Exception e) { log.error(e, e); @@ -483,8 +508,26 @@ cc, "src/test/ressources/verticalprofile_mesh/verticalprofile_step_07_feed.xml", "src/test/ressources/verticalprofile_mesh/verticalprofile_step_07_advance.xml", describeDocument); + + // Achter Schritt + this + .doNextStep( + artifact, + cc, + "src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_feed.xml", + "src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_advance.xml", describeDocument); - // Achter Schritt + + // Neunter Schritt + this + .doNextStep( + artifact, + cc, + "src/test/ressources/verticalprofile_mesh/verticalprofile_step_09_feed.xml", + "src/test/ressources/verticalprofile_mesh/verticalprofile_step_09_advance.xml", describeDocument); + + + // 10. Schritt Document outputData = artifact.describe(describeDocument,cc); FileOutputStream fos = null; FileOutputStream fos2 = null; @@ -502,22 +545,22 @@ artifact .feed( this - .readDocument("src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_feed.xml"), + .readDocument("src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_feed.xml"), cc); artifact .out( this - .readDocument("src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_out_statistics.xml"), + .readDocument("src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_out_statistics.xml"), fos2, cc); artifact .out( this - .readDocument("src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_out_chart.xml"), + .readDocument("src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_out_chart.xml"), fos, cc); artifact .out( this - .readDocument("src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_out_csv.xml"), + .readDocument("src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_out_csv.xml"), fos3, cc); } catch (Exception e) { log.error(e, e); @@ -820,6 +863,22 @@ cc, "src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_07_feed.xml", "src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_07_advance.xml", describeDocument); + + // Achter Schritt + this + .doNextStep( + artifact, + cc, + "src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_feed.xml", + "src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_advance.xml", describeDocument); + + // Neunter Schritt + this + .doNextStep( + artifact, + cc, + "src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_09_feed.xml", + "src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_09_advance.xml", describeDocument); Document outputData = artifact.describe(describeDocument,cc); FileOutputStream fos = null; @@ -838,19 +897,19 @@ artifact .feed( this - .readDocument("src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_feed.xml"), + .readDocument("src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_feed.xml"), cc); artifact .out( this - .readDocument("src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_out_statistics.xml"), + .readDocument("src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_out_statistics.xml"), fos2, cc); artifact .out( this - .readDocument("src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_out_chart.xml"), + .readDocument("src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_out_chart.xml"), fos, cc); - artifact.out(this.readDocument("src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_out_csv.xml"), + artifact.out(this.readDocument("src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_out_csv.xml"), fos3, cc); } catch (Exception e) { @@ -919,6 +978,14 @@ "src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_04_feed.xml", "src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_04_advance.xml", describeDocument); + // Fünfter Schritt + this + .doNextStep( + artifact, + cc, + "src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_feed.xml", + "src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_advance.xml", describeDocument); + Document outputData = artifact.describe(describeDocument,cc); FileOutputStream fos = null; FileOutputStream fos2 = null; @@ -935,18 +1002,18 @@ + System.currentTimeMillis() + ".csv"); artifact .feed(this.readDocument("src/test/ressources/horizontal" + - "crosssection_mesh/horizontalcrosssection_step_05_feed.xml"), + "crosssection_mesh/horizontalcrosssection_step_06_feed.xml"), cc); artifact .out(this.readDocument("src/test/ressources/horizontal" + - "crosssection_mesh/horizontalcrosssection_step_05_out_statistics.xml"), + "crosssection_mesh/horizontalcrosssection_step_06_out_statistics.xml"), fos2, cc); artifact .out(this.readDocument("src/test/ressources/horizontal" + - "crosssection_mesh/horizontalcrosssection_step_05_out_chart.xml"), + "crosssection_mesh/horizontalcrosssection_step_06_out_chart.xml"), fos, cc); artifact.out(this.readDocument("src/test/ressources/horizontal" + - "crosssection_mesh/horizontalcrosssection_step_05_out_csv.xml"), + "crosssection_mesh/horizontalcrosssection_step_06_out_csv.xml"), fos3, cc); } catch (Exception e) { @@ -1029,7 +1096,13 @@ cc, "src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_06_feed.xml", "src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_06_advance.xml", describeDocument); - + // Siebter Schritt + this + .doNextStep( + artifact, + cc, + "src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_feed.xml", + "src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_advance.xml", describeDocument); Document outputData = artifact.describe(describeDocument,cc); FileOutputStream fos = null; @@ -1048,19 +1121,19 @@ artifact .feed( this - .readDocument("src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_feed.xml"), + .readDocument("src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_feed.xml"), cc); artifact .out( this - .readDocument("src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_out_statistics.xml"), + .readDocument("src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_out_statistics.xml"), fos2, cc); artifact .out( this - .readDocument("src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_out_chart.xml"), + .readDocument("src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_out_chart.xml"), fos, cc); - artifact.out(this.readDocument("src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_out_csv.xml"), + artifact.out(this.readDocument("src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_out_csv.xml"), fos3, cc); } catch (Exception e) { diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_02_advance.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_02_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_02_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,7 +1,7 @@ - - - + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_03_advance.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_03_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_03_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,7 +1,7 @@ - - - + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_03_feed.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_03_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_03_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - - + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_04_advance.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_04_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_04_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,7 +1,7 @@ - - - + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_04_feed.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_04_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_04_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_05_advance.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_05_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_05_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,7 +1,7 @@ - - - + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_05_feed.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_05_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_05_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - - + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_06_advance.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_06_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_06_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_06_feed.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_06_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_06_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,7 +4,6 @@ - - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_07_advance.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_07_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_07_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_07_feed.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_07_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_07_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,7 +4,6 @@ - - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_advance.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_feed.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,7 +4,7 @@ - - + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_out_chart.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_out_chart.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_out_csv.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_out_csv.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_out_statistics.xml --- a/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_08_out_statistics.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_09_advance.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_09_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_09_feed.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_09_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_feed.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_out_chart.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_out_chart.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_out_csv.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_out_csv.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_out_statistics.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalProfile_mesh/horizontalprofile_step_10_out_statistics.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_02_advance.xml --- a/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_02_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_02_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,7 +1,7 @@ - - - - + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_02_feed.xml --- a/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_02_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_02_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,7 +3,7 @@ - - - + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_03_advance.xml --- a/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_03_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_03_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_03_feed.xml --- a/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_03_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_03_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_04_advance.xml --- a/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_04_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_04_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_04_feed.xml --- a/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_04_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_04_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_advance.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_feed.xml --- a/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_out_chart.xml --- a/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_out_chart.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_out_csv.xml --- a/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_out_csv.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_out_statistics.xml --- a/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_05_out_statistics.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_06_feed.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_06_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_06_out_chart.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_06_out_chart.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_06_out_csv.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_06_out_csv.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_06_out_statistics.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/horizontalcrosssection_mesh/horizontalcrosssection_step_06_out_statistics.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_02_advance.xml --- a/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_02_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_02_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,5 +4,5 @@ - + diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_02_feed.xml --- a/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_02_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_02_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -5,6 +5,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_03_advance.xml --- a/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_03_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_03_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,5 +4,5 @@ - + diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_03_feed.xml --- a/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_03_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_03_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -5,6 +5,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_04_advance.xml --- a/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_04_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_04_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,5 +4,5 @@ - + diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_04_feed.xml --- a/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_04_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_04_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -5,6 +5,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_05_advance.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_05_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,8 @@ + + + + + + + diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_05_feed.xml --- a/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_05_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_05_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -5,7 +5,6 @@ - - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_05_out.xml --- a/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_05_out.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_06_feed.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_06_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries/timeseries_step_06_out.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries/timeseries_step_06_out.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_02_advance.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_02_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_02_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_02_feed.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_02_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_02_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_03_advance.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_03_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_03_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,7 +1,7 @@ - - - - + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_03_feed.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_03_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_03_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_04_advance.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_04_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_04_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,7 +1,7 @@ - - - - + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_04_feed.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_04_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_04_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_05_advance.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_05_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_05_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_05_feed.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_05_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_05_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,7 +4,6 @@ - - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_06_advance.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_06_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_06_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_06_feed.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_06_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_06_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,7 +4,7 @@ - - + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_advance.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_feed.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,7 +4,7 @@ - - + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_out_chart.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_out_chart.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_out_csv.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_out_csv.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_out_statistics.xml --- a/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_07_out_statistics.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_08_feed.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_08_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_08_out_chart.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_08_out_chart.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_08_out_csv.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_08_out_csv.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_08_out_statistics.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/timeseries_mesh/timeseries_step_08_out_statistics.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_02_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_02_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_02_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_02_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_02_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_02_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_03_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_03_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_03_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_03_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_03_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_03_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_04_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_04_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_04_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_04_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_04_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_04_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_05_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_05_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_05_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_05_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_05_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_05_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_06_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_06_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_06_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,7 +1,7 @@ - - - - + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_06_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_06_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_06_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,9 +1,9 @@ - - - - - - + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_advance.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,9 +1,9 @@ - - - - - - + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_out_chart.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_out_chart.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_out_csv.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_out_csv.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_out_statistics.xml --- a/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_07_out_statistics.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_feed.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_out_chart.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_out_chart.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_out_csv.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_out_csv.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_out_statistics.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_step_08_out_statistics.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_02_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_02_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_02_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_02_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_02_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_02_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_03_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_03_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_03_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -2,6 +2,6 @@ - - + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_03_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_03_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_03_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,7 +4,6 @@ - - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_04_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_04_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_04_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_04_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_04_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_04_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -2,8 +2,9 @@ - + - + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_advance.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,7 +4,6 @@ - - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_out_chart.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_out_chart.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_out_csv.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_out_csv.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_out_statistics.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_05_out_statistics.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_06_feed.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_06_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_06_out_chart.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_06_out_chart.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_06_out_csv.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_06_out_csv.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_06_out_statistics.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile/verticalprofile_step_06_out_statistics.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_02_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_02_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_02_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_02_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_02_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_02_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_03_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_03_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_03_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_03_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_03_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_03_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_04_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_04_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_04_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_04_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_04_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_04_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_05_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_05_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_05_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_05_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_05_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_05_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_06_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_06_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_06_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_06_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_06_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_06_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,6 +4,6 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_07_advance.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_07_advance.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_07_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -3,5 +3,5 @@ - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_07_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_07_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_07_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -4,7 +4,6 @@ - - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_advance.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_feed.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_feed.xml Fri Nov 06 10:22:00 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -1,9 +1,9 @@ - - + + - + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_out_chart.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_out_chart.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ - - - - - /> - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_out_csv.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_out_csv.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_out_statistics.xml --- a/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_08_out_statistics.xml Fri Nov 06 10:22:00 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_09_advance.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_09_advance.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_09_feed.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_09_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_feed.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_feed.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_out_chart.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_out_chart.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,13 @@ + + + + + /> + + + + + + + + \ No newline at end of file diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_out_csv.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_out_csv.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + diff -r d53f15c33f89 -r a610c0a01afc gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_out_statistics.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gnv-artifacts/src/test/ressources/verticalprofile_mesh/verticalprofile_step_10_out_statistics.xml Fri Nov 06 10:23:55 2009 +0000 @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file