| 39 | } |
| 40 | |
| 41 | class Rinse implements State { |
| 42 | @Override public void run() { |
| 43 | System.out.println("Rinsing"); |
| 44 | new Nap(0.5); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | class Washer extends StateMachine { |
| 49 | private int i = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected