Skip to content

Instantly share code, notes, and snippets.

@ryctabo
Created January 28, 2018 22:14
Show Gist options
  • Save ryctabo/07e7c6f2bffc601f3f091193075b662e to your computer and use it in GitHub Desktop.
Save ryctabo/07e7c6f2bffc601f3f091193075b662e to your computer and use it in GitHub Desktop.
Unit testing with Jersey Test Framework
public class MyResourceTest extends JerseyTest {
@Override
protected Application configure() {
return new ResourceConfig(MyResource.class);
}
@Test
public void testGetIt() {
String response = target().path("myresource").request().get(String.class);
Assert.assertEquals("Got it!", response);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment