| 1 | package CreationalDesignPattern.FactoryPattern.SimpleFactoryPattern.WithoutFactoryPattern; |
| 2 | |
| 3 | abstract public class Pizza { |
| 4 | |
| 5 | abstract public void prepare(); |
| 6 | abstract public void bake(); |
| 7 | abstract public void cut(); |
| 8 | abstract public void pack(); |
| 9 | |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected