コード例 #1
0
ファイル: PersonTest.php プロジェクト: nottavi/Faker
 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.'));
 }