()
| 59 | } |
| 60 | |
| 61 | public void testAppendGString2() { |
| 62 | DummyGString a = new DummyGString(new Object[]{"James"}, new String[]{"Hello "}); |
| 63 | DummyGString b = new DummyGString(new Object[]{"Bob"}, new String[]{"Hello "}); |
| 64 | GString result = a.plus(b); |
| 65 | assertEquals("Hello JamesHello Bob", result.toString()); |
| 66 | } |
| 67 | |
| 68 | public void testEqualsAndHashCode() { |
| 69 | DummyGString a = new DummyGString(new Object[]{Integer.valueOf(1)}); |
nothing calls this directly
no test coverage detected