Пример #1
0
 /**
  * @covers TheSportsDb\Entity\Entity::getPropertyMapDefinition
  */
 public function testGetPropertyMapDefinition()
 {
     // If something goes wrong an exception will be thrown
     $this->assertInstanceOf(PropertyMapDefinition::class, TestEntity::getPropertyMapDefinition());
     TestEntity::resetStatics(array('get'));
     $this->assertInstanceOf(PropertyMapDefinition::class, TestEntity::getPropertyMapDefinition());
 }