Skip to content

Instantly share code, notes, and snippets.

@gigfork
Forked from eugenp/RestAssert.java
Created May 6, 2013 15:35
Show Gist options
  • Save gigfork/5525894 to your computer and use it in GitHub Desktop.
Save gigfork/5525894 to your computer and use it in GitHub Desktop.
public static void assertResponseCodeIs
( final HttpResponse response, final int expectedCode ){
final int statusCode = httpResponse.getStatusLine().getStatusCode();
assertEquals( expectedCode, statusCode );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment