Tests passing

This commit is contained in:
James Agnew 2015-10-16 10:29:31 -04:00
parent eeac5e6ac0
commit ec623ac55f
1 changed files with 3 additions and 2 deletions

View File

@ -27,12 +27,13 @@ public class ClientMockingTest {
Bundle retVal = new Bundle();
//@formatter:off
when((Object)client
Object when = client
.search()
.forResource(eq(Condition.class))
.where(any(ICriterion.class))
.returnBundle((Class<IBaseBundle>)any())
.execute())
.execute();
when((Object)when)
.thenReturn(retVal);
//@formatter:off