I'm attemting to use the Manifold plugin as follows:
@Test
void printBoard() {
@JailBreak TicTacToe game = new TicTacToe();
game.printBoard();
assertEquals("- ,- ,-\r\n- ,- ,-\r\n- ,- ,-", outputStreamCaptor.toString()
.trim());
}
I want to add some more assertions that test whether the board is printed correctly after I alter the private board variable in game (this is why I want to use the JailBreak annotation.
I've installed the plugin in Intellij by going to settings > plugins > searching for manifold > installing/applying it. I then restarted my IDE and no luck (compiler doesn't recognize @JailBreak).
Does anyone have any ideas about what could be going wrong? I'm using Java8 if that helps at all.