| 32 | } |
| 33 | |
| 34 | class Spin implements State { |
| 35 | @Override public void run() { |
| 36 | System.out.println("Spinning"); |
| 37 | new Nap(0.5); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | class Rinse implements State { |
| 42 | @Override public void run() { |
nothing calls this directly
no outgoing calls
no test coverage detected