From 07afcdcec6c42a5a9c5d56badc50dbc3401a98d3 Mon Sep 17 00:00:00 2001 From: Eric Espie Date: Fri, 29 May 2026 15:38:20 +0200 Subject: [PATCH] :white_check_mark: remove not meaningful localized data test --- .../setup/ModuleInstallerAPITest.php | 15 --------------- 1 file changed, 15 deletions(-) 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();