(String[] args)
| 4 | CarFactory carBuilder; |
| 5 | Car car; |
| 6 | public static void main(String[] args) { |
| 7 | TestFactoryPattern client = new TestFactoryPattern(); |
| 8 | client.buildCarMethod(); |
| 9 | } |
| 10 | |
| 11 | public void buildCarMethod() { |
| 12 | System.out.println("Building Hatchback car..."); |
nothing calls this directly
no test coverage detected