From 04d1de42cf2253934644f9d34f7adacfa745c71f Mon Sep 17 00:00:00 2001 From: HeshamTB Date: Sat, 7 Nov 2020 14:41:55 +0300 Subject: [PATCH] add tests empty for now. maybe will change the tests also --- Hajj-simulation.iml | 17 +++++++++++ tests/CampaignTest.java | 62 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+) create mode 100644 tests/CampaignTest.java diff --git a/Hajj-simulation.iml b/Hajj-simulation.iml index c90834f..87c1164 100644 --- a/Hajj-simulation.iml +++ b/Hajj-simulation.iml @@ -4,8 +4,25 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/CampaignTest.java b/tests/CampaignTest.java new file mode 100644 index 0000000..3e3a919 --- /dev/null +++ b/tests/CampaignTest.java @@ -0,0 +1,62 @@ +import org.junit.jupiter.api.Test; + +public class CampaignTest { + + private Campaign campaign = new Campaign(District.ALAZIZIYA,20); + + @Test + void getHousingToDestRoute() { + } + + @Test + void setHousingToDestRoute() { + } + + @Test + void getDestToHousingRoute() { + } + + @Test + void setDestToHousingRoute() { + } + + @Test + void getHotelDistrict() { + } + + @Test + void getTimeToLeaveToDest() { + } + + @Test + void setTimeToLeaveToDest() { + } + + @Test + void getTimeToLeaveToHousing() { + } + + @Test + void setTimeToLeaveToHousing() { + } + + @Test + void getNumberOfBusses() { + } + + @Test + void getVehicles() { + } + + @Test + void setVehicles() { + } + + @Test + void generateBusses() { + } + + @Test + void getUID() { + } +}