()
| 77 | } |
| 78 | |
| 79 | @Test |
| 80 | public void testThrowInBlock() throws ScannerException, ParserException { |
| 81 | List<String> tokens = getTokens(":set L: ThrowIn"); |
| 82 | Directive directive = (Directive) new Parser().parseTokenList(tokens); |
| 83 | |
| 84 | assertEquals(SET_PIECE_EXECUTION_BLOCK, directive.getType()); |
| 85 | assertEquals("L", directive.getTeam()); |
| 86 | assertEquals(THROW_IN, directive.getSetPiece()); |
| 87 | } |
| 88 | |
| 89 | @Test |
| 90 | public void testCornerKickBlock() throws ScannerException, ParserException { |
nothing calls this directly
no test coverage detected