diff --git a/tests/php-unit-tests/unitary-tests/setup/ModuleInstallerAPITest.php b/tests/php-unit-tests/unitary-tests/setup/ModuleInstallerAPITest.php index a201d0e08..da4a9d223 100644 --- a/tests/php-unit-tests/unitary-tests/setup/ModuleInstallerAPITest.php +++ b/tests/php-unit-tests/unitary-tests/setup/ModuleInstallerAPITest.php @@ -354,21 +354,6 @@ SQL ]; } - /** - * @covers \ModuleInstallerAPI::LoadLocalizedData - * @dataProvider LoadLocalizedData_InvalidParametersProvider - */ - public function testLoadLocalizedData_ThrowsOnInvalidParameters(string $sPreviousVersion, string $sCurrentVersion, string $sFirstLoadingVersion, string $sPattern, string $sExpectedMessage): void - { - $oConfig = MetaModel::GetConfig(); - $this->assertNotNull($oConfig); - - $this->expectException(\CoreUnexpectedValue::class); - $this->expectExceptionMessage($sExpectedMessage); - - ModuleInstallerAPI::LoadLocalizedData($oConfig, $sPreviousVersion, $sCurrentVersion, $sFirstLoadingVersion, $sPattern); - } - public function LoadLocalizedData_InvalidParametersProvider(): array { $sTmpDir = static::CreateTmpdir();