Created
June 7, 2016 16:40
-
-
Save endeepak/19a0a543f71d64405992f48a74ce3cba 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
HttpGet httpGet = new HttpGet("https://en.wikipedia.org/wiki/List_of_least_concern_birds"); | |
HttpResponse httpResponse = client.execute(httpGet); | |
String responseHtml = IOUtils.toString(httpResponse.getEntity().getContent()); | |
assertThat(responseHtml.length(), greaterThan(16348)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment