Skip to content

Instantly share code, notes, and snippets.

@maggandalf
Created February 16, 2014 13:00
Show Gist options
  • Save maggandalf/9033864 to your computer and use it in GitHub Desktop.
Save maggandalf/9033864 to your computer and use it in GitHub Desktop.
@Test
public void shouldBeAbleToInvokeServletInDeployedWebApp(
@ArquillianResource URL url) throws Exception {
String body = readAllAndClose(new URL(url, "myservlet").openStream());
assertThat(body, is("Hello World"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment