예제 #1
0
파일: InfoTest.php 프로젝트: webpants/YAWIK
 /**
  * @testdox Allows setting the street of the user
  * @covers Auth\Entity\Info::getStreet
  * @covers Auth\Entity\Info::setStreet
  */
 public function testSetGetStreet()
 {
     $input = 'Test Road 13';
     $this->target->setStreet($input);
     $this->assertEquals($input, $this->target->getStreet());
 }