예제 #1
0
 public function testSetComment()
 {
     $photo = new Photo();
     $photo->setComment("This is a photo comment");
     $this->assertEquals("This is a photo comment", $photo->getComment());
 }