(String[] args)
| 2 | |
| 3 | public class placeOrder { |
| 4 | public static void main(String[] args) { |
| 5 | NYPizzaStore nyPizzaStore = new NYPizzaStore(); |
| 6 | nyPizzaStore.orderPizza("cheese"); |
| 7 | |
| 8 | ChicagoPizzaStore chicagoPizzaStore = new ChicagoPizzaStore(); |
| 9 | chicagoPizzaStore.orderPizza("clam"); |
| 10 | |
| 11 | ChicagoPizzaStore chicagoPizzaStore1 = new ChicagoPizzaStore(); |
| 12 | chicagoPizzaStore1.orderPizza("mushroom"); |
| 13 | |
| 14 | } |
| 15 | } |
nothing calls this directly
no test coverage detected