This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker stats $(docker ps --format={{.Names}}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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))); | |
| } |