()
| 49 | } |
| 50 | |
| 51 | @Test |
| 52 | public void testRunAction() throws ScannerException, ParserException { |
| 53 | List<String> tokens = getTokens("18:29 DMw:Fr->Run => Aw"); |
| 54 | |
| 55 | Statement statement = ParserUtil.parseStatement(tokens); |
| 56 | |
| 57 | assertEquals(ActionType.Run, statement.getAction().getType()); |
| 58 | } |
| 59 | |
| 60 | @Test |
| 61 | public void testOneTwoPassAction() throws ScannerException, ParserException { |
nothing calls this directly
no test coverage detected