function it_should_throw_an_account_disabled_exception_if_the_user_checker_detects_it()
 {
     $this->user->isEnabled()->willReturn(false);
     $this->shouldThrow('\\Symfony\\Component\\Security\\Core\\Exception\\DisabledException')->duringAuthenticate($this->token);
 }