()
| 65 | } |
| 66 | |
| 67 | @Test (expected = IllegalArgumentException.class) |
| 68 | public void parseToObjectStringNull() throws Exception { |
| 69 | JSON.parseToObject((String)null, HashMap.class); |
| 70 | } |
| 71 | |
| 72 | @Test (expected = IllegalArgumentException.class) |
| 73 | public void parseToObjectStringEmpty() throws Exception { |
nothing calls this directly
no test coverage detected