Exemplo n.º 1
0
 /**
  * @test
  */
 public function logoutFrontEndUserAfterLoginSwitchesLoginManagerToNotLoggedIn()
 {
     $this->fixture->createFakeFrontEnd();
     $feUserId = $this->fixture->createFrontEndUser();
     $this->fixture->loginFrontEndUser($feUserId);
     $this->fixture->logoutFrontEndUser();
     $this->assertFalse($this->fixture->isLoggedIn());
 }