public function testFailOnCreatedEvent()
 {
     $this->setEventDispatcher();
     \Krucas\Service\Validator\Validator::getEventDispatcher()->shouldReceive('until')->times(3)->andReturn(true);
     \Krucas\Service\Validator\Validator::getEventDispatcher()->shouldReceive('until')->once()->andReturn(false);
     $this->assertFalse($this->getValidatorService()->isFurther());
 }