Skip to content

Instantly share code, notes, and snippets.

@NilukaSripalim
Forked from gigfork/RestAssert.java
Created June 12, 2018 09:29
Show Gist options
  • Save NilukaSripalim/897342fbb654a7ba38517c0818b08771 to your computer and use it in GitHub Desktop.
Save NilukaSripalim/897342fbb654a7ba38517c0818b08771 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