()
| 44 | } |
| 45 | |
| 46 | public void testAppendString2() { |
| 47 | DummyGString a = new DummyGString(new Object[]{"James"}, new String[]{"Hello "}); |
| 48 | GString result = a.plus(" how are you?"); |
| 49 | System.out.println("Strings: " + FormatHelper.toString(result.getStrings())); |
| 50 | System.out.println("Values: " + FormatHelper.toString(result.getValues())); |
| 51 | assertEquals("Hello James how are you?", result.toString()); |
| 52 | } |
| 53 | |
| 54 | public void testAppendGString() { |
| 55 | DummyGString a = new DummyGString(new Object[]{"James"}); |
nothing calls this directly
no test coverage detected