예제 #1
0
 public function testRemoveEmployee()
 {
     $company = new Company();
     $employee = new Employee();
     $this->assertCount(0, $company->getEmployees());
     $company->addEmployee($employee);
     $this->assertCount(1, $company->getEmployees());
     $company->removeEmployee($employee);
     $this->assertCount(0, $company->getEmployees());
 }