* Condition is satisfied when negated is not satisfied.
*/
@Test
public void unsatisfiedWhenNexusStopped() {
underTest.handle(new NexusStartedEvent(this));
underTest.handle(new NexusStoppedEvent(this));
assertThat(underTest.isSatisfied(), is(false));
verifyEventBusEvents(satisfied(underTest), unsatisfied(underTest));
}