-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGridTest.java
34 lines (32 loc) · 1 KB
/
GridTest.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
import static org.junit.Assert.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.util.ArrayList;
/**
* The test class GridTest.
*
* @author Emmett O'Toole and Cameron Zurmuhl
* @version 5-1-17 8:57 P.M
*/
public class GridTest
{
/**
* Test for the createShops method
*/
@Test
public void testCreateShops(){
Grid test=new Grid("shops.txt","warehouses1.txt");
ArrayList<Shop>shopTest=test.getShops();
ArrayList<Warehouse>wareTest=test.getWares();
/*for(Shop a:shopTest){
System.out.println("Shop ID:"+" "+a.getID()+" "+a.getLocation().getX()+" "+a.getLocation().getY());
}
for(Warehouse a:wareTest){
System.out.println("Ware ID:"+a.getID()+" "+a.getLocation().getX()+" "+a.getLocation().getY());
}*/
//test that the array lists are of proper size
assertEquals(shopTest.size(), 200);
assertEquals(wareTest.size(), 10);
}
}