Skip to content

Commit

Permalink
Remove unused test-cases
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Kwok <[email protected]>
  • Loading branch information
andy-k-improving committed Nov 27, 2024
1 parent 304cb00 commit 9dad1b5
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,5 @@ public void testDoExecute_All_Succeed() {

verify(listener, times(1)).onResponse(any(IpEnrichmentResponse.class));
}


/**
* No alternative dataSource, exception being thrown to indicate this.
*/
@Test
public void testDoExecute_WithNoAlternativeDataSource() {
IpEnrichmentRequest request = new IpEnrichmentRequest("192.168.1.1", null);
action.doExecute(task, request, listener);

verify(listener, times(1)).onFailure(any(IllegalArgumentException.class));
}

}

0 comments on commit 9dad1b5

Please sign in to comment.