diff --git a/tests/Feature/Auth/DoctrineUserProviderTest.php b/tests/Feature/Auth/DoctrineUserProviderTest.php index 8265c0d9..3b64d0b7 100644 --- a/tests/Feature/Auth/DoctrineUserProviderTest.php +++ b/tests/Feature/Auth/DoctrineUserProviderTest.php @@ -191,5 +191,7 @@ protected function mockGetRepository($class = AuthenticableMock::class) protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Auth/Passwords/DoctrineTokenRepositoryTest.php b/tests/Feature/Auth/Passwords/DoctrineTokenRepositoryTest.php index 67307819..aec6c1fb 100644 --- a/tests/Feature/Auth/Passwords/DoctrineTokenRepositoryTest.php +++ b/tests/Feature/Auth/Passwords/DoctrineTokenRepositoryTest.php @@ -276,5 +276,7 @@ public function test_can_delete_expired() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/Cache/AbstractCacheProviderTest.php b/tests/Feature/Configuration/Cache/AbstractCacheProviderTest.php index b074c428..4095da32 100644 --- a/tests/Feature/Configuration/Cache/AbstractCacheProviderTest.php +++ b/tests/Feature/Configuration/Cache/AbstractCacheProviderTest.php @@ -19,5 +19,7 @@ public function test_can_resolve() public function tearDown(): void { Mockery::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/Cache/CacheManagerTest.php b/tests/Feature/Configuration/Cache/CacheManagerTest.php index 28af72fc..35e505b0 100644 --- a/tests/Feature/Configuration/Cache/CacheManagerTest.php +++ b/tests/Feature/Configuration/Cache/CacheManagerTest.php @@ -100,5 +100,7 @@ public function test_can_replace_an_existing_driver() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/Cache/IlluminateCacheProviderTest.php b/tests/Feature/Configuration/Cache/IlluminateCacheProviderTest.php index 976a08da..5759fe9d 100644 --- a/tests/Feature/Configuration/Cache/IlluminateCacheProviderTest.php +++ b/tests/Feature/Configuration/Cache/IlluminateCacheProviderTest.php @@ -63,5 +63,7 @@ public function test_driver_has_no_namespace_by_default(): void public function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/Connections/ConnectionManagerTest.php b/tests/Feature/Configuration/Connections/ConnectionManagerTest.php index a79cdae3..8a56a594 100644 --- a/tests/Feature/Configuration/Connections/ConnectionManagerTest.php +++ b/tests/Feature/Configuration/Connections/ConnectionManagerTest.php @@ -101,5 +101,7 @@ public function test_can_replace_an_existing_driver() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/Connections/MysqlConnectionTest.php b/tests/Feature/Configuration/Connections/MysqlConnectionTest.php index 86352ecb..3ef507dc 100644 --- a/tests/Feature/Configuration/Connections/MysqlConnectionTest.php +++ b/tests/Feature/Configuration/Connections/MysqlConnectionTest.php @@ -71,5 +71,7 @@ public function test_can_resolve() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/Connections/OracleConnectionTest.php b/tests/Feature/Configuration/Connections/OracleConnectionTest.php index fa01a96a..0316676f 100644 --- a/tests/Feature/Configuration/Connections/OracleConnectionTest.php +++ b/tests/Feature/Configuration/Connections/OracleConnectionTest.php @@ -59,5 +59,7 @@ public function test_can_resolve() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/Connections/PgsqlConnectionTest.php b/tests/Feature/Configuration/Connections/PgsqlConnectionTest.php index b7c56adc..9dd2614c 100644 --- a/tests/Feature/Configuration/Connections/PgsqlConnectionTest.php +++ b/tests/Feature/Configuration/Connections/PgsqlConnectionTest.php @@ -71,5 +71,7 @@ public function test_can_resolve() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/Connections/SqliteConnectionTest.php b/tests/Feature/Configuration/Connections/SqliteConnectionTest.php index 1bc6d7e4..2f6b2e88 100644 --- a/tests/Feature/Configuration/Connections/SqliteConnectionTest.php +++ b/tests/Feature/Configuration/Connections/SqliteConnectionTest.php @@ -82,5 +82,7 @@ public function test_can_resolve_with_full_in__memory_database() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/Connections/SqlsrvConnectionTest.php b/tests/Feature/Configuration/Connections/SqlsrvConnectionTest.php index 1710fd84..73cf9eed 100644 --- a/tests/Feature/Configuration/Connections/SqlsrvConnectionTest.php +++ b/tests/Feature/Configuration/Connections/SqlsrvConnectionTest.php @@ -59,5 +59,7 @@ public function test_can_resolve() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/MetaData/AttributesTest.php b/tests/Feature/Configuration/MetaData/AttributesTest.php index 989388bd..8dcb81fd 100644 --- a/tests/Feature/Configuration/MetaData/AttributesTest.php +++ b/tests/Feature/Configuration/MetaData/AttributesTest.php @@ -36,5 +36,7 @@ public function test_can_resolve() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/MetaData/MetaDataManagerTest.php b/tests/Feature/Configuration/MetaData/MetaDataManagerTest.php index f292f074..fbbd16a4 100644 --- a/tests/Feature/Configuration/MetaData/MetaDataManagerTest.php +++ b/tests/Feature/Configuration/MetaData/MetaDataManagerTest.php @@ -76,5 +76,7 @@ public function test_can_replace_an_existing_driver() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/MetaData/PhpTest.php b/tests/Feature/Configuration/MetaData/PhpTest.php index 4770f9df..70d9710c 100644 --- a/tests/Feature/Configuration/MetaData/PhpTest.php +++ b/tests/Feature/Configuration/MetaData/PhpTest.php @@ -37,5 +37,7 @@ public function test_can_resolve() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/MetaData/SimplifiedXmlTest.php b/tests/Feature/Configuration/MetaData/SimplifiedXmlTest.php index 790760dd..e2edf9e1 100644 --- a/tests/Feature/Configuration/MetaData/SimplifiedXmlTest.php +++ b/tests/Feature/Configuration/MetaData/SimplifiedXmlTest.php @@ -38,5 +38,7 @@ public function test_can_resolve() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/MetaData/StaticPhpTest.php b/tests/Feature/Configuration/MetaData/StaticPhpTest.php index fb7ec806..122dd35e 100644 --- a/tests/Feature/Configuration/MetaData/StaticPhpTest.php +++ b/tests/Feature/Configuration/MetaData/StaticPhpTest.php @@ -37,5 +37,7 @@ public function test_can_resolve() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Configuration/MetaData/XmlTest.php b/tests/Feature/Configuration/MetaData/XmlTest.php index 986793ed..a393732c 100644 --- a/tests/Feature/Configuration/MetaData/XmlTest.php +++ b/tests/Feature/Configuration/MetaData/XmlTest.php @@ -56,5 +56,7 @@ public function test_can_not_specify_extension_without_error() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/DoctrineManagerTest.php b/tests/Feature/DoctrineManagerTest.php index e4886d4a..9229ad06 100644 --- a/tests/Feature/DoctrineManagerTest.php +++ b/tests/Feature/DoctrineManagerTest.php @@ -187,6 +187,8 @@ protected function tearDown(): void { m::close(); BootChain::flush(); + + parent::tearDown(); } public function assertExtendedCorrectly($configuration, $connection, $eventManager) diff --git a/tests/Feature/EntityManagerFactoryTest.php b/tests/Feature/EntityManagerFactoryTest.php index 0ce788f0..7985c456 100644 --- a/tests/Feature/EntityManagerFactoryTest.php +++ b/tests/Feature/EntityManagerFactoryTest.php @@ -1183,6 +1183,8 @@ public function testPrimaryReadReplicaConnection( protected function tearDown(): void { m::close(); + + parent::tearDown(); } /** diff --git a/tests/Feature/Extensions/ExtensionManagerTest.php b/tests/Feature/Extensions/ExtensionManagerTest.php index a6683a3d..54c801e1 100644 --- a/tests/Feature/Extensions/ExtensionManagerTest.php +++ b/tests/Feature/Extensions/ExtensionManagerTest.php @@ -201,6 +201,8 @@ protected function tearDown(): void m::close(); $this->manager = $this->newManager(); + + parent::tearDown(); } protected function newManager() diff --git a/tests/Feature/Extensions/MappingDriverChainTest.php b/tests/Feature/Extensions/MappingDriverChainTest.php index 32c7228b..4c1b0042 100644 --- a/tests/Feature/Extensions/MappingDriverChainTest.php +++ b/tests/Feature/Extensions/MappingDriverChainTest.php @@ -101,5 +101,7 @@ public function test_can_add_paths_to_simplified_filedriver() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/IlluminateRegistryTest.php b/tests/Feature/IlluminateRegistryTest.php index d72949e3..cdd8b64d 100644 --- a/tests/Feature/IlluminateRegistryTest.php +++ b/tests/Feature/IlluminateRegistryTest.php @@ -562,5 +562,7 @@ public function test_get_manager_after_reset_should_return_new_manager() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Middleware/SubstituteBindingsTest.php b/tests/Feature/Middleware/SubstituteBindingsTest.php index c4ca60ac..dd2d7e4f 100644 --- a/tests/Feature/Middleware/SubstituteBindingsTest.php +++ b/tests/Feature/Middleware/SubstituteBindingsTest.php @@ -196,5 +196,7 @@ public function test_for_typed_value_binding() protected function tearDown(): void { m::close(); + + parent::tearDown(); } } diff --git a/tests/Feature/Resolvers/EntityListenerResolverTest.php b/tests/Feature/Resolvers/EntityListenerResolverTest.php index 67b44a24..98501d96 100644 --- a/tests/Feature/Resolvers/EntityListenerResolverTest.php +++ b/tests/Feature/Resolvers/EntityListenerResolverTest.php @@ -33,6 +33,8 @@ protected function setUp(): void protected function tearDown(): void { m::close(); + + parent::tearDown(); } public function testImplementsDoctrineInterface() diff --git a/tests/Feature/Validation/DoctrinePresenceVerifierTest.php b/tests/Feature/Validation/DoctrinePresenceVerifierTest.php index 236f5001..43093aca 100644 --- a/tests/Feature/Validation/DoctrinePresenceVerifierTest.php +++ b/tests/Feature/Validation/DoctrinePresenceVerifierTest.php @@ -273,5 +273,7 @@ protected function defaultGetMultiCountMocks() protected function tearDown(): void { m::close(); + + parent::tearDown(); } }