Changeset 1913
- Timestamp:
- 26/09/03 10:11:46 (5 years ago)
- Files:
-
- trunk/flymine/build.xml (modified) (4 diffs)
- trunk/intermine/build.xml (modified) (4 diffs)
- trunk/intermine/model/testmodel/testmodel.zargo (deleted)
- trunk/intermine/model/testmodel/xmitest.xmi (added)
- trunk/intermine/model/testmodel/xmitest.xml (added)
- trunk/intermine/model/testmodel/xmitest.zargo (added)
- trunk/intermine/model/xmitest (added)
- trunk/intermine/model/xmitest/testmodel_model.xml (added)
- trunk/intermine/src/test/org/intermine/modelproduction/uml (added)
- trunk/intermine/src/test/org/intermine/modelproduction/uml/XmiParserFunctionalTest.java (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/flymine/build.xml
r1890 r1913 180 180 <pathelement location="${build.model}/testmodel"/> 181 181 <pathelement location="${build.model}/acedbtest"/> 182 <pathelement location="${build.model}/xmitest"/> 182 183 </path> 183 184 … … 313 314 314 315 <!-- Testmodel --> 315 <target name="build-testmodel" depends="compile-main " >316 <ant antfile="build-model.xml" target="build-model-from- zargo">316 <target name="build-testmodel" depends="compile-main, copy-model-testmodel" > 317 <ant antfile="build-model.xml" target="build-model-from-xml"> 317 318 <property name="model.name" value="testmodel"/> 318 <property name="model.src" value="${model}/ uml"/>319 <property name="model.src" value="${model}/flymine"/> 319 320 <reference torefid="class.path" refid="test.class.path"/> 320 321 </ant> … … 357 358 <target name="copy-model-acedbtest" depends="build-acedbtest"> 358 359 <copy todir="${build.model}/acedbtest" file="${model}/acedb/acedbtest.wrm"/> 360 </target> 361 362 <!-- copy original flymine model file to model directory for testmodel --> 363 <target name="copy-model-testmodel"> 364 <copy todir="${build.model}/testmodel" file="${model}/flymine/testmodel_model.xml"/> 365 </target> 366 367 <!-- copy original .xmi file to model directory for XmiParserFunctionalTest --> 368 <target name="copy-model-xmitest"> 369 <copy todir="${build.model}/xmitest" file="${model}/uml/xmitest.xmi"/> 370 <copy todir="${build.model}/xmitest" file="${model}/uml/xmitest.xml"/> 359 371 </target> 360 372 … … 468 480 469 481 <!-- run the tests --> 470 <target name="test-main" depends="compile-test, build-db-testmodel, copy-model-acedbtest "482 <target name="test-main" depends="compile-test, build-db-testmodel, copy-model-acedbtest, copy-model-xmitest" 471 483 description="perform JUnit tests on main source code" > 472 484 trunk/intermine/build.xml
r1890 r1913 180 180 <pathelement location="${build.model}/testmodel"/> 181 181 <pathelement location="${build.model}/acedbtest"/> 182 <pathelement location="${build.model}/xmitest"/> 182 183 </path> 183 184 … … 313 314 314 315 <!-- Testmodel --> 315 <target name="build-testmodel" depends="compile-main " >316 <ant antfile="build-model.xml" target="build-model-from- zargo">316 <target name="build-testmodel" depends="compile-main, copy-model-testmodel" > 317 <ant antfile="build-model.xml" target="build-model-from-xml"> 317 318 <property name="model.name" value="testmodel"/> 318 <property name="model.src" value="${model}/ uml"/>319 <property name="model.src" value="${model}/flymine"/> 319 320 <reference torefid="class.path" refid="test.class.path"/> 320 321 </ant> … … 357 358 <target name="copy-model-acedbtest" depends="build-acedbtest"> 358 359 <copy todir="${build.model}/acedbtest" file="${model}/acedb/acedbtest.wrm"/> 360 </target> 361 362 <!-- copy original flymine model file to model directory for testmodel --> 363 <target name="copy-model-testmodel"> 364 <copy todir="${build.model}/testmodel" file="${model}/flymine/testmodel_model.xml"/> 365 </target> 366 367 <!-- copy original .xmi file to model directory for XmiParserFunctionalTest --> 368 <target name="copy-model-xmitest"> 369 <copy todir="${build.model}/xmitest" file="${model}/uml/xmitest.xmi"/> 370 <copy todir="${build.model}/xmitest" file="${model}/uml/xmitest.xml"/> 359 371 </target> 360 372 … … 468 480 469 481 <!-- run the tests --> 470 <target name="test-main" depends="compile-test, build-db-testmodel, copy-model-acedbtest "482 <target name="test-main" depends="compile-test, build-db-testmodel, copy-model-acedbtest, copy-model-xmitest" 471 483 description="perform JUnit tests on main source code" > 472 484
