()
| 369 | } |
| 370 | |
| 371 | @Test (expected = IllegalArgumentException.class) |
| 372 | public void serializeToJSONPBytesEmptyCB() throws Exception { |
| 373 | JSON.serializeToJSONPBytes("", (HashMap<String, String>)null); |
| 374 | } |
| 375 | |
| 376 | /** Helper to parse an input stream into a map */ |
| 377 | private HashMap<String, String> parseToMap(final InputStream is) |
nothing calls this directly
no test coverage detected