(String[] args)
| 7 | public class Question { |
| 8 | |
| 9 | public static void main(String[] args) { |
| 10 | Game game = Game.getInstance(); |
| 11 | game.getBoard().initialize(); |
| 12 | game.getBoard().printBoard(); |
| 13 | Automator automator = Automator.getInstance(); |
| 14 | while (!automator.isOver() && automator.playRandom()) { |
| 15 | } |
| 16 | automator.printScores(); |
| 17 | } |
| 18 | } |
nothing calls this directly
no test coverage detected