1
0
mirror of synced 2024-12-13 22:56:04 +03:00

skip test if php 5.3

This commit is contained in:
Adam Prager 2013-04-19 14:49:32 +02:00
parent b7b107b08a
commit bf92a40171

View File

@ -458,7 +458,10 @@ class EntityGeneratorTest extends \Doctrine\Tests\OrmTestCase
*/
public function testTraitPropertiesAndMethodsAreNotDuplicated()
{
if (PHP_VERSION_ID >= 50400) {
if (PHP_VERSION_ID < 50400) {
$this->markTestSkipped('Traits are not available before php 5.4.');
}
$cmf = new ClassMetadataFactory();
$em = $this->_getTestEntityManager();
$cmf->setEntityManager($em);
@ -479,7 +482,6 @@ class EntityGeneratorTest extends \Doctrine\Tests\OrmTestCase
$this->assertSame($reflClass->hasMethod('setAddress'), false);
$this->assertSame($reflClass->hasMethod('getAddress'), false);
}
}
/**
* @return array