expectLastCall().once();
niceControl.replay();
GadgetSpec mockSpec = createMock(GadgetSpec.class);
expect(mockSpec.toJSON()).andThrow(new JSONException("This is not JSON"));
expect(registry.getGadgetSpec("-1")).andReturn(mockSpec);
replay(registry, mockSpec);
servlet.doGet(request, response);