Adding a data-provider case for a generic model (non-internal class)
This commit is contained in:
parent
ecf028490f
commit
a8b0ac82b4
1 changed files with 11 additions and 0 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Reference in a new issue