-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathShopTest.java
50 lines (47 loc) · 1.48 KB
/
ShopTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import static org.junit.Assert.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
/**
* The test class ShopTest.
*
* @author Emmett O'Toole
* @version 4-29-17
*/
public class ShopTest
{
/**
* Test The distance from method
*/
@Test
public void testDistanceFrom(){
Shop one=new Shop(1,new Location(5,10));
Shop two=new Shop(2,new Location(20,20));
Shop three=new Shop(3,new Location(54,35));
Shop four=new Shop(4,new Location(76,20));
Shop five=new Shop(5,new Location(80,80));
Shop six=new Shop(6,new Location(95,1));
//Distance between Shop one and two
assertEquals(one.distanceFrom(two),25);
assertEquals(two.distanceFrom(one),25);
//Distance between three and four
assertEquals(three.distanceFrom(four),37);
assertEquals(four.distanceFrom(three),37);
//Distance between five and six
assertEquals(five.distanceFrom(six),94);
assertEquals(six.distanceFrom(five),94);
}
/**
*Method that tests various methods of shop
*/
@Test
public void testShopMethods(){
Shop test=new Shop(1,new Location(10,10));
assertEquals(test.isOrdersEmpty(),true);
Cargo one=new Cargo(10,10,10);
test.addCargo(one);
assertEquals(test.isOrdersEmpty(),false);
test.decreaseCargo(one);
assertEquals(test.isOrdersEmpty(),true);
}
}