Exemplo n.º 1
0
 public function test_it_has_a_name()
 {
     $system = new EducationSystem(new Name('LOMCE'));
     $this->assertEquals('LOMCE', $system->getName());
 }
Exemplo n.º 2
0
 public function equals(EducationSystem $system)
 {
     return $this->getName() == $system->getName();
 }