()
| 93 | |
| 94 | class User { |
| 95 | public void addProduct(){ |
| 96 | InventorySystem.addProduct(new Product("", 0d,"",0,Size.L)); |
| 97 | } |
| 98 | |
| 99 | public void executeOrder(Order order){ |
| 100 | for(Map.Entry<Product, Integer> item: order.productCount.entrySet()) { |
nothing calls this directly
no test coverage detected