1
0
mirror of synced 2025-02-22 07:03:13 +03:00
This commit is contained in:
Fabio B. Silva 2012-10-20 15:44:09 -03:00
parent fb467a1196
commit b03388293f

View File

@ -310,8 +310,8 @@ class EntityGeneratorTest extends \Doctrine\Tests\OrmTestCase
$this->assertFileExists($filename); $this->assertFileExists($filename);
require_once $filename; require_once $filename;
$propertu = new \ReflectionProperty($metadata->name, 'centroCustos'); $property = new \ReflectionProperty($metadata->name, 'centroCustos');
$docComment = $propertu->getDocComment(); $docComment = $property->getDocComment();
//joinColumns //joinColumns
$this->assertContains('@JoinColumn(name="idorcamento", referencedColumnName="idorcamento"),', $docComment); $this->assertContains('@JoinColumn(name="idorcamento", referencedColumnName="idorcamento"),', $docComment);