| 22 | } |
| 23 | |
| 24 | class Note implements Product { |
| 25 | |
| 26 | @Override |
| 27 | public void sell() { |
| 28 | System.out.println("sell Note !!!"); |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | class ProductFactory { |
| 33 | public static Product getProduct(String className) { |
nothing calls this directly
no outgoing calls
no test coverage detected