diff options
author | Tharre <tharre3@gmail.com> | 2018-05-12 00:00:59 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-21 22:41:32 +0200 |
commit | 9ca5b384b4143529a3c9bc80bff39dab635aee1c (patch) | |
tree | 6ab331f5f396f77982f7041795a5c57037f6aa7e /src/test/resources/operationDAOUpdateSetup.xml | |
parent | 7c32ed2e91a558e40097c0649d233b8f9e43cf60 (diff) | |
download | sepm-groupproject-9ca5b384b4143529a3c9bc80bff39dab635aee1c.tar.gz sepm-groupproject-9ca5b384b4143529a3c9bc80bff39dab635aee1c.tar.xz sepm-groupproject-9ca5b384b4143529a3c9bc80bff39dab635aee1c.zip |
Implement requestVehicles() in service+DAO #25953
Diffstat (limited to 'src/test/resources/operationDAOUpdateSetup.xml')
-rw-r--r-- | src/test/resources/operationDAOUpdateSetup.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/resources/operationDAOUpdateSetup.xml b/src/test/resources/operationDAOUpdateSetup.xml new file mode 100644 index 0000000..23d1a25 --- /dev/null +++ b/src/test/resources/operationDAOUpdateSetup.xml @@ -0,0 +1,17 @@ +<dataset> + <Operation id="1" opCode="ALP-95E7" severity="E" created="2000-01-01" + destination="Wiedner Hauptstraße 35, Wien" status="ACTIVE"/> + + <VehicleVersion id="1" name="RTW-1" constructionType="HOCHDACH" type="RTW" hasNef="true"/> + <VehicleVersion id="2" name="KTW-1" constructionType="HOCHDACH" type="KTW" hasNef="true"/> + <VehicleVersion id="3" name="KTW-2" constructionType="MITTELHOCHDACH" type="KTW_B" hasNef="false"/> + <VehicleVersion id="4" name="BKTW-2" constructionType="HOCHDACH" type="BKTW" hasNef="false"/> + <VehicleVersion id="5" name="NEF-1" constructionType="NORMAL" type="NEF" hasNef="true"/> + + <Vehicle id="1" version="1" status="FREI_FUNK"/> + <Vehicle id="2" version="2" status="FREI_WACHE"/> + <Vehicle id="3" version="3" status="FREI_FUNK"/> + <Vehicle id="4" version="4" status="FREI_WACHE"/> + + <VehicleOperation /> +</dataset> |