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