function it_should_throw_an_account_expired_exception_if_the_user_checker_detects_it()
 {
     $this->user->isAccountNonExpired()->willReturn(false);
     $this->shouldThrow('\\Symfony\\Component\\Security\\Core\\Exception\\AccountExpiredException')->duringAuthenticate($this->token);
 }