Home | History | Annotate | Download | only in customization

Lines Matching refs:police

329         Police police = mock(Police.class);
335 then(police).shouldHaveZeroInteractions();
357 Police police = mock(Police.class);
361 police.chase(car);
363 InOrder inOrder = inOrder(person, police);
365 then(police).should(inOrder).chase(car);
385 static class Police {