1
0
mirror of synced 2025-03-22 07:53:49 +03:00

Adding a data-provider case for a generic model (non-internal class)

This commit is contained in:
Marco Pivetta 2014-12-05 12:57:48 +01:00
parent ecf028490f
commit a8b0ac82b4

View File

@ -50,6 +50,17 @@ class ReflectionEmbeddedPropertyTest extends \PHPUnit_Framework_TestCase
public function getTestedReflectionProperties()
{
return array(
array(
$this->getReflectionProperty(
'Doctrine\\Tests\\Models\\Generic\\BooleanModel',
'id'
),
$this->getReflectionProperty(
'Doctrine\\Tests\\Models\\Generic\\BooleanModel',
'id'
),
),
// reflection on classes extending internal PHP classes:
array(
$this->getReflectionProperty(
'Doctrine\\Tests\\Models\\Reflection\\ArrayObjectExtendingClass',