From 00dc7e9843e5f4b00144a6e72597fb484b1f7e13 Mon Sep 17 00:00:00 2001 From: Jan Date: Thu, 5 Feb 2026 13:56:52 +0100 Subject: [PATCH] wip: intermediate commit. --- .../de/avatic/lcc/e2e/testdata/TestCases.java | 46 +++++++++++++------ 1 file changed, 31 insertions(+), 15 deletions(-) diff --git a/src/test/java/de/avatic/lcc/e2e/testdata/TestCases.java b/src/test/java/de/avatic/lcc/e2e/testdata/TestCases.java index f984a30..d4424c3 100644 --- a/src/test/java/de/avatic/lcc/e2e/testdata/TestCases.java +++ b/src/test/java/de/avatic/lcc/e2e/testdata/TestCases.java @@ -116,9 +116,13 @@ public final class TestCases { .build(), DestinationInput.builder() .name("Aschaffenburg (KION plant)") - .quantity(3500) + .quantity(25000) .d2d(false) - .customHandling(false) + .route("HH, WH ULHA, AB") + .handlingCost(3.0) + .repackingCost(3.3) + .disposalCost(8.0) + .customHandling(true) .build() )) .build(), @@ -191,14 +195,19 @@ public final class TestCases { .build(), DestinationInput.builder() .name("Aschaffenburg (KION plant)") - .quantity(60000) + .quantity(80000) .d2d(false) - .customHandling(false) + .route("Turkey supplier,WH ULHA,AB") + .handlingCost(6.0) + .repackingCost(6.0) + .disposalCost(6.0) + .customHandling(true) .build(), DestinationInput.builder() - .name("Geisa (KION plant)") - .quantity(60000) + .name("Luzzara (KION plant)") + .quantity(30000) .d2d(false) + .route("Turkey supplier,LZZ") .customHandling(false) .build() )) @@ -410,11 +419,15 @@ public final class TestCases { .build(), DestinationInput.builder() .name("Aschaffenburg (KION plant)") - .quantity(500) + .quantity(1000) .d2d(true) - .d2dCost(2500.0) - .d2dDuration(12) - .customHandling(false) + .route("Ireland supplier,WH ULHA, AB") + .d2dCost(1500.0) + .d2dDuration(10) + .handlingCost(2.5) + .repackingCost(5.0) + .disposalCost(6.0) + .customHandling(true) .build() )) .build(), @@ -491,19 +504,22 @@ public final class TestCases { .build(), DestinationInput.builder() .name("Aschaffenburg (KION plant)") - .quantity(4000) + .quantity(6000) .d2d(true) .d2dCost(100.0) .d2dDuration(2) .customHandling(false) .build(), DestinationInput.builder() - .name("Geisa (KION plant)") - .quantity(4000) + .name("Luzzara (KION plant)") + .quantity(3000) .d2d(true) - .d2dCost(150.0) + .d2dCost(200.0) .d2dDuration(3) - .customHandling(false) + .handlingCost(20.0) + .repackingCost(7.0) + .disposalCost(11.0) + .customHandling(true) .build() )) .build(),