Skip to content

Commit 4e7ef2e

Browse files
author
eugenp
committed
Merge branch 'master' of https://github.com/eugenp/tutorials
2 parents 930c34c + 152132b commit 4e7ef2e

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

guava/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
=========
22

3-
## Guava Cookbooks and Examples
3+
## Guava and Hamcrest Cookbooks and Examples
44

55

66
### Relevant Articles:
77
- [Guava Collections Cookbook](http://www.baeldung.com/guava-collections)
8+
- [Guava Ordering Cookbook](http://www.baeldung.com/guava-order)
9+
- [Guava Functional Cookbook](http://www.baeldung.com/guava-functions-predicates)
810

11+
- [Hamcrest Collections Cookbook](http://www.baeldung.com/hamcrest-collections-arrays)

httpclient/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=========
22

3-
## Mockito Cookbooks and Examples
3+
## HttpClient 4.x Cookbooks and Examples
44

55

66
### Relevant Articles:
7-
7+
- [HttpClient 4 Cookbook](http://www.baeldung.com/httpclient4)

httpclient/src/test/java/org/baeldung/mockito/HttpClientLiveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public final void after() throws IllegalStateException, IOException {
6363

6464
@Test
6565
public final void whenExecutingBasicGetRequest_thenNoExceptions() throws ClientProtocolException, IOException {
66-
instance.execute(new HttpGet(SAMPLE_URL));
66+
response = instance.execute(new HttpGet(SAMPLE_URL));
6767
}
6868

6969
@Test

mockito/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55

66
### Relevant Articles:
77
- [Mockito Verify Cookbook](http://www.baeldung.com/mockito-verify)
8+
- [Mockito When/Then Cookbook](http://www.baeldung.com/mockito-behavior)
89

0 commit comments

Comments
 (0)