()
| 52 | } |
| 53 | |
| 54 | public void testAppendGString() { |
| 55 | DummyGString a = new DummyGString(new Object[]{"James"}); |
| 56 | DummyGString b = new DummyGString(new Object[]{"Bob"}); |
| 57 | GString result = a.plus(b); |
| 58 | assertEquals("Hello James!Hello Bob!", result.toString()); |
| 59 | } |
| 60 | |
| 61 | public void testAppendGString2() { |
| 62 | DummyGString a = new DummyGString(new Object[]{"James"}, new String[]{"Hello "}); |
nothing calls this directly
no test coverage detected