()
| 107 | } |
| 108 | |
| 109 | @Test (expected = IllegalArgumentException.class) |
| 110 | public void parseToObjectByteNull() throws Exception { |
| 111 | byte[] json = null; |
| 112 | JSON.parseToObject(json, HashMap.class); |
| 113 | } |
| 114 | |
| 115 | @Test (expected = IllegalArgumentException.class) |
| 116 | public void parseToObjectByteBad() throws Exception { |
nothing calls this directly
no test coverage detected