()
| 32 | public class TestCOM { |
| 33 | |
| 34 | @Test |
| 35 | public void testParseHelpNull() { |
| 36 | Com.ParseHelp ph = new Com.ParseHelp(null); |
| 37 | |
| 38 | Collection<String> result = new ArrayList<>(); |
| 39 | while (!ph.isEof()) |
| 40 | result.add(Com.Parse(ph)); |
| 41 | Assert.assertTrue(result.isEmpty()); |
| 42 | } |
| 43 | |
| 44 | @Test |
| 45 | public void testParseHelpCharArray() { |