Skip to content

Commit

Permalink
update test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Ssangaran committed Sep 14, 2020
1 parent 4333eee commit b1ffbbc
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,4 @@ public String getValue() {
return value;
}

public void setValue(String value) {
this.value = value;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,7 @@ public void testGetUserAuthenticationToken_successful() throws Exception {

HyperwalletAuthenticationToken resp = client.getAuthenticationToken("test-user-token");
assertThat(resp, is(equalTo(hyperwalletAuthenticationToken)));
assertThat(resp.getValue(), is(equalTo(hyperwalletAuthenticationToken.getValue())));

Mockito.verify(mockApiClient)
.post("https://api.sandbox.hyperwallet.com/rest/v4/users/test-user-token/authentication-token", null,
Expand Down

This file was deleted.

0 comments on commit b1ffbbc

Please sign in to comment.