コード例 #1
0
ファイル: EmployeeTest.php プロジェクト: fedegiust/Jumph
 public function testSetEmail()
 {
     $employee = new Employee();
     $employee->setEmail('*****@*****.**');
     $this->assertEquals('*****@*****.**', $employee->getEmail());
 }