(String query)
| 379 | } |
| 380 | |
| 381 | private void shouldPass(String query) throws RecognitionException, IOException { |
| 382 | System.out.println("Testing: " + query); |
| 383 | Assert.assertEquals(query + " should have passed", 0, parse(query)); |
| 384 | } |
| 385 | |
| 386 | private void shouldFail(String query) throws RecognitionException, IOException { |
| 387 | System.out.println("Testing: " + query); |
no test coverage detected