MCPcopy Create free account
hub / github.com/demoth/jake2 / testParseHelpNull

Method testParseHelpNull

qcommon/src/test/java/jake2/qcommon/TestCOM.java:34–42  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

32public 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() {

Callers

nothing calls this directly

Calls 3

isEofMethod · 0.95
ParseMethod · 0.95
addMethod · 0.45

Tested by

no test coverage detected