N°3091 Update PHPUnit to 8.5 : fix setUp and teardDown methods signatures on support/3.0 new tests

This commit is contained in:
Pierre Goiffon
2022-04-22 15:57:32 +02:00
parent f4a027b474
commit 5a37bc338a
13 changed files with 16 additions and 16 deletions

View File

@@ -20,7 +20,7 @@ class ThemeHandlerTest extends ItopTestCase
private $sTmpDir;
private $aDirsToCleanup= [];
public function setUp()
public function setUp(): void
{
parent::setUp();
require_once(APPROOT.'application/themehandler.class.inc.php');
@@ -42,7 +42,7 @@ class ThemeHandlerTest extends ItopTestCase
$this->RecurseCopy(APPROOT."/test/application/theme-handler/expected/css", $this->sTmpDir."/branding/css");
}
public function tearDown()
public function tearDown(): void
{
parent::tearDown();