()
| 75 | } |
| 76 | |
| 77 | @Test (expected = IllegalArgumentException.class) |
| 78 | public void parseToObjectStringBad() throws Exception { |
| 79 | String json = "{\"notgonnafinish"; |
| 80 | JSON.parseToObject(json, HashMap.class); |
| 81 | } |
| 82 | |
| 83 | @Test (expected = IllegalArgumentException.class) |
| 84 | public void parseToObjectStringBadMap() throws Exception { |
nothing calls this directly
no test coverage detected