/**
  * @test
  */
 public function authenticationEntryPointCanBeSetAndRetrieved()
 {
     $entryPoint = new \TYPO3\Flow\Security\Authentication\EntryPoint\WebRedirect();
     $this->token->setAuthenticationEntryPoint($entryPoint);
     $this->assertSame($entryPoint, $this->token->getAuthenticationEntryPoint());
 }