/**
  * @test
  */
 public function logInUserWithNullSetsUserToNull()
 {
     $user = new Tx_Oelib_Model_FrontEndUser();
     $this->subject->logInUser($user);
     $this->subject->logInUser(NULL);
     self::assertNull($this->subject->getLoggedInUser());
 }