()
| 90 | } |
| 91 | |
| 92 | @Test |
| 93 | public void testGoalSaveCatch() throws ScannerException, ParserException { |
| 94 | |
| 95 | Statement parsedStatement = parseStatement(GS_CATCH); |
| 96 | |
| 97 | assertEquals(ActionOutcome.getEntity("GS"), parsedStatement.getActionOutcome()); |
| 98 | assertEquals(Coordinates.getEntity("Dg"), parsedStatement.getStateOut().getSpace()); |
| 99 | assertFalse(parsedStatement.getStateOut().isSamePossesion()); |
| 100 | } |
| 101 | |
| 102 | @Test |
| 103 | public void testGoalAttempt() throws ScannerException, ParserException { |
nothing calls this directly
no test coverage detected