コード例 #1
0
 public function testThatTheNameIsSettableAndGettable()
 {
     $entrant = new Entrant();
     $entrant->setName("Chris");
     $this->assertEquals("Chris", $entrant->getName());
 }