コード例 #1
0
 /**
  * @test
  */
 public function setLocation()
 {
     $value = new Location();
     $value->setTitle('Location1 1');
     $this->subject->setLocation($value);
     $this->assertEquals($value, $this->subject->getLocation());
 }
コード例 #2
0
 /**
  * @test
  */
 public function setTitle()
 {
     $value = 'A title';
     $this->subject->setTitle($value);
     $this->assertEquals($value, $this->subject->getTitle());
 }