Example #1
0
 public function test_can_check_if_has_mappers()
 {
     $set = new MapperSet();
     $this->assertFalse($set->hasMappers());
     $set->add(new StubEntityMapping());
     $this->assertTrue($set->hasMappers());
 }