public function testGetLoginLinkWithLoggedOutUserAddsUidPiVarToUrl()
 {
     $eventUid = $this->testingFramework->createRecord('tx_seminars_seminars', array('pid' => $this->systemFolderPid, 'title' => 'foo'));
     $this->testingFramework->logoutFrontEndUser();
     $this->fixture->setConfigurationValue('loginPID', $this->testingFramework->createFrontEndPage());
     self::assertContains(rawurlencode('tx_seminars_pi1[uid]') . '=' . $eventUid, $this->fixture->getLoginLink('foo', $this->testingFramework->createFrontEndPage(), $eventUid));
 }