()
| 62 | } |
| 63 | |
| 64 | @Test |
| 65 | public void testParseHelp() { |
| 66 | String test = "testrene = \"ein mal eins\"; a=3 "; |
| 67 | Com.ParseHelp ph = new Com.ParseHelp(test); |
| 68 | |
| 69 | Collection<String> result = new ArrayList<>(); |
| 70 | while (!ph.isEof()) |
| 71 | result.add(Com.Parse(ph)); |
| 72 | Assert.assertEquals(Arrays.asList("testrene", "=", "ein mal eins", ";", "a=3", ""), result); |
| 73 | } |
| 74 | |
| 75 | @Test |
| 76 | public void testParseHelpWithSlash() { |