Exemplo n.º 1
0
 /**
  * @test
  */
 public function setRegistrationDataWithCompanyGivenStoresCompanyIntoTheObject()
 {
     $userUid = $this->testingFramework->createAndLoginFrontEndUser();
     $this->fixture->setRegistrationData($this->fixture->getSeminarObject(), $userUid, array('company' => 'Foo' . LF . 'Bar Inc'));
     self::assertSame('Foo' . LF . 'Bar Inc', $this->fixture->getRegistrationData('company'));
 }