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 4242
4343class EntityTypeTest extends BaseTypeTestCase
4444{
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 ;
5555
5656 private EntityManager $ em ;
5757 private MockObject &ManagerRegistry $ emRegistry ;
You can’t perform that action at this time.
0 commit comments