Exemplo n.º 1
0
 public function testGetThankYouAfterRegistrationUrlWithOneTimeAccountMarkerInUserSessionLogsOutUser()
 {
     $this->testingFramework->createAndLoginFrontEndUser();
     $this->session->setAsBoolean('onetimeaccount', TRUE);
     $this->fixture->getThankYouAfterRegistrationUrl();
     self::assertFalse($this->testingFramework->isLoggedIn());
 }
Exemplo n.º 2
0
 public function testCreateLogInAndAddFeUserAsVipLogsInFeUser()
 {
     $this->createLogInAndAddFeUserAsVip();
     self::assertTrue($this->testingFramework->isLoggedIn());
 }
Exemplo n.º 3
0
 /**
  * @test
  */
 public function createLogInAndRegisterFrontEndUserLogsInFrontEndUser()
 {
     $this->createLogInAndRegisterFrontEndUser();
     self::assertTrue($this->testingFramework->isLoggedIn());
 }