public function test_it_has_a_name()
 {
     $system = new EducationSystem(new Name('LOMCE'));
     $this->assertEquals('LOMCE', $system->getName());
 }
 public function equals(EducationSystem $system)
 {
     return $this->getName() == $system->getName();
 }