()
| 44 | } |
| 45 | |
| 46 | @Test |
| 47 | void testArray() { |
| 48 | String[] value = new String[]{"hello"}; |
| 49 | |
| 50 | MetaClass metaClass = InvokerHelper.getMetaClass(value); |
| 51 | |
| 52 | assertNotNull(metaClass, "got metaclass"); |
| 53 | |
| 54 | metaClass.invokeMethod(value, "toString", new Object[0]); |
| 55 | } |
| 56 | |
| 57 | @Test |
| 58 | void testString() { |
nothing calls this directly
no test coverage detected