-
-
Save NilukaSripalim/897342fbb654a7ba38517c0818b08771 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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