126127128129130131132133134135136
sendCommandToParticipatingClients(new StartTestCommand()); awaitCommandResponses(); awaitTestResults(); sendCommandToParticipatingClients(new TearDownTestCommand()); awaitCommandResponses(); } finally {
198199200201202203204205206
public void testNonRunningClientIsUnaffectedByStopTestCommand() throws Exception { assertState(_client, READY); sendCommandAndValidateResponse(new TearDownTestCommand(), false); assertState(_client, READY); }
919293949596979899
verify(_client).startTest(); } public void testStopTest() throws Exception { final TearDownTestCommand stopCommand = new TearDownTestCommand(); _visitor.visit(stopCommand); verify(_client).tearDownTest(); }
131132133134135136137138139140141
132133134135136137138139140141142