Skip to content

Instantly share code, notes, and snippets.

View ajdfajdfl2003's full-sized avatar
💭
⏳Reloading ......

Angus ajdfajdfl2003

💭
⏳Reloading ......
View GitHub Profile
@ajdfajdfl2003
ajdfajdfl2003 / docker_stats.sh
Created March 7, 2020 13:12
docker stats without ids
docker stats $(docker ps --format={{.Names}})
@Test
public void when_run_then_farmer_should_doSomething() {
FlowerService service = new FlowerService(farmer);
service.run();
Student student = new Student("angus", 123);
Mockito.verify(farmer, Mockito.times(1))
.doSomething(argThat(new StudentMatcher(student)));
}