File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 42
42
43
43
class EntityTypeTest extends BaseTypeTestCase
44
44
{
45
- public const TESTED_TYPE = ' Symfony\Bridge\Doctrine\Form\Type\ EntityType' ;
46
-
47
- private const ITEM_GROUP_CLASS = ' Symfony\Bridge\Doctrine\Tests\Fixtures\ GroupableEntity' ;
48
- private const SINGLE_IDENT_CLASS = ' Symfony\Bridge\Doctrine\Tests\Fixtures\ SingleIntIdEntity' ;
49
- private const SINGLE_IDENT_NO_TO_STRING_CLASS = ' Symfony\Bridge\Doctrine\Tests\Fixtures\ SingleIntIdNoToStringEntity' ;
50
- private const SINGLE_STRING_IDENT_CLASS = ' Symfony\Bridge\Doctrine\Tests\Fixtures\ SingleStringIdEntity' ;
51
- private const SINGLE_ASSOC_IDENT_CLASS = ' Symfony\Bridge\Doctrine\Tests\Fixtures\ SingleAssociationToIntIdEntity' ;
52
- private const SINGLE_STRING_CASTABLE_IDENT_CLASS = ' Symfony\Bridge\Doctrine\Tests\Fixtures\ SingleStringCastableIdEntity' ;
53
- private const COMPOSITE_IDENT_CLASS = ' Symfony\Bridge\Doctrine\Tests\Fixtures\ CompositeIntIdEntity' ;
54
- private const COMPOSITE_STRING_IDENT_CLASS = ' Symfony\Bridge\Doctrine\Tests\Fixtures\ CompositeStringIdEntity' ;
45
+ public const TESTED_TYPE = EntityType::class ;
46
+
47
+ private const ITEM_GROUP_CLASS = GroupableEntity::class ;
48
+ private const SINGLE_IDENT_CLASS = SingleIntIdEntity::class ;
49
+ private const SINGLE_IDENT_NO_TO_STRING_CLASS = SingleIntIdNoToStringEntity::class ;
50
+ private const SINGLE_STRING_IDENT_CLASS = SingleStringIdEntity::class ;
51
+ private const SINGLE_ASSOC_IDENT_CLASS = SingleAssociationToIntIdEntity::class ;
52
+ private const SINGLE_STRING_CASTABLE_IDENT_CLASS = SingleStringCastableIdEntity::class ;
53
+ private const COMPOSITE_IDENT_CLASS = CompositeIntIdEntity::class ;
54
+ private const COMPOSITE_STRING_IDENT_CLASS = CompositeStringIdEntity::class ;
55
55
56
56
private EntityManager $ em ;
57
57
private MockObject &ManagerRegistry $ emRegistry ;
You can’t perform that action at this time.
0 commit comments