summaryrefslogtreecommitdiff
path: root/src/Q10/TrainTimeTableTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Q10/TrainTimeTableTest.java')
-rw-r--r--src/Q10/TrainTimeTableTest.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/Q10/TrainTimeTableTest.java b/src/Q10/TrainTimeTableTest.java
index ae88676..ac25c2d 100644
--- a/src/Q10/TrainTimeTableTest.java
+++ b/src/Q10/TrainTimeTableTest.java
@@ -13,16 +13,16 @@ public class TrainTimeTableTest extends TestCase {
private LinkedList<Station> stations =
new LinkedList<Station>(
Arrays.asList(
- new Station("Vancouver", null, new Date(), 1),
- new Station("Kamloops", new Date(), new Date(), 2),
- new Station("Jasper", new Date(), new Date(), 2),
- new Station("Edmonton", new Date(), new Date(), 2),
- new Station("Saskatchewan", new Date(), new Date(), 3),
- new Station("Winnipeg", new Date(), new Date(), 3),
- new Station("Sioux Lookout", new Date(), new Date(), 4),
- new Station("Hornepayne", new Date(), new Date(), 4),
- new Station("Capreol", new Date(), new Date(), 5),
- new Station("Toronto", new Date(), new Date(), 5)));
+ new Station("Vancouver", null, new Date(1546374600000l), 1),
+ new Station("Kamloops", new Date(1546408800000l), new Date(1546410900000l), 2),
+ new Station("Jasper", new Date(1546444800000l), new Date(1546450200000l), 2),
+ new Station("Edmonton", new Date(1546470000000l), new Date(1546473540000l), 2),
+ new Station("Saskatchewan", new Date(1546502400000l), new Date(1546503900000l), 3),
+ new Station("Winnipeg", new Date(1546548300000l), new Date(1546554600000l), 3),
+ new Station("Sioux Lookout", new Date(1546578120000l), new Date(1546580520000l), 4),
+ new Station("Hornepayne", new Date(1546616100000l), new Date(1546618200000l), 4),
+ new Station("Capreol", new Date(1546647480000l), new Date(1546649280000l), 5),
+ new Station("Toronto", new Date(1546680600000l), null, 5)));
public TrainTimeTableTest(String testName) {
super(testName);