function it_should_throw_an_account_locked_exception_if_the_user_checker_detects_it()
 {
     $this->user->isAccountNonLocked()->willReturn(false);
     $this->shouldThrow('\\Symfony\\Component\\Security\\Core\\Exception\\LockedException')->duringAuthenticate($this->token);
 }