()
| 52 | } |
| 53 | |
| 54 | @Test |
| 55 | public void testActionOutcome() throws ScannerException, ParserException { |
| 56 | |
| 57 | Statement parsedStatement = parseStatement(ACTION_OUTCOME); |
| 58 | |
| 59 | assertEquals(ActionOutcome.getEntity("PST"), parsedStatement.getActionOutcome()); |
| 60 | assertEquals(StateContext.getEntity("FT"), parsedStatement.getStateOut().getContext()); |
| 61 | assertEquals(Coordinates.getEntity("Ap"), parsedStatement.getStateOut().getSpace()); |
| 62 | } |
| 63 | |
| 64 | @Test |
| 65 | public void testGoalSaveActionOutcome() throws ScannerException, ParserException { |
nothing calls this directly
no test coverage detected