@@ -32,11 +32,6 @@ public function testConfigHasDependencies(): void
3232 $ this ->assertArrayHasKey ('dependencies ' , $ this ->config );
3333 }
3434
35- public function testConfigHasDoctrine (): void
36- {
37- $ this ->assertArrayHasKey ('doctrine ' , $ this ->config );
38- }
39-
4035 public function testConfigHasTemplates (): void
4136 {
4237 $ this ->assertArrayHasKey ('templates ' , $ this ->config );
@@ -76,22 +71,6 @@ public function testDependenciesHasAliases(): void
7671 $ this ->assertArrayHasKey (EntityManagerInterface::class, $ this ->config ['dependencies ' ]['aliases ' ]);
7772 }
7873
79- public function testGetDoctrineConfig (): void
80- {
81- $ this ->assertArrayHasKey ('configuration ' , $ this ->config ['doctrine ' ]);
82- $ this ->assertIsArray ($ this ->config ['doctrine ' ]['configuration ' ]);
83- $ this ->assertArrayHasKey ('orm_default ' , $ this ->config ['doctrine ' ]['configuration ' ]);
84- $ this ->assertIsArray ($ this ->config ['doctrine ' ]['configuration ' ]['orm_default ' ]);
85- $ this ->assertArrayHasKey (
86- 'entity_listener_resolver ' ,
87- $ this ->config ['doctrine ' ]['configuration ' ]['orm_default ' ]
88- );
89- $ this ->assertSame (
90- EntityListenerResolver::class,
91- $ this ->config ['doctrine ' ]['configuration ' ]['orm_default ' ]['entity_listener_resolver ' ]
92- );
93- }
94-
9574 public function testGetTemplates (): void
9675 {
9776 $ this ->assertArrayHasKey ('paths ' , $ this ->config ['templates ' ]);
0 commit comments