public function testGetParentMetadata() {
$metadata = $this->cmf
->getMetadataFor(__NAMESPACE__ . '\\ChildEntity');
$this
->assertInstanceOf('Doctrine\\Common\\Persistence\\Mapping\\ClassMetadata', $metadata);
$this
->assertTrue($this->cmf
->hasMetadataFor(__NAMESPACE__ . '\\ChildEntity'));
$this
->assertTrue($this->cmf
->hasMetadataFor(__NAMESPACE__ . '\\RootEntity'));
}