예제 #1
0
 public function testLastNameReturnsDoe()
 {
     $this->assertEquals(Person::lastName(), 'Doe');
 }
예제 #2
0
파일: PersonTest.php 프로젝트: saj696/pipe
 public function testTitleFemale()
 {
     $this->assertContains(Person::titleFemale(), array('Mrs.', 'Ms.', 'Miss', 'Dr.', 'Prof.'));
 }