()
| 8 | private final int COLUMNS = 10; |
| 9 | |
| 10 | private Game() { |
| 11 | board = new Board(ROWS, COLUMNS); |
| 12 | players = new Player[2]; |
| 13 | players[0] = new Player(Color.Black); |
| 14 | players[1] = new Player(Color.White); |
| 15 | Automator.getInstance().initialize(players); // used for testing |
| 16 | } |
| 17 | |
| 18 | public static Game getInstance() { |
| 19 | if (instance == null) { |
nothing calls this directly
no test coverage detected