Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PHPUnit/Integration/Settings/IntegrationTestCase.php')
-rw-r--r--tests/PHPUnit/Integration/Settings/IntegrationTestCase.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/PHPUnit/Integration/Settings/IntegrationTestCase.php b/tests/PHPUnit/Integration/Settings/IntegrationTestCase.php
index b01c61397f..0a2b8fe76d 100644
--- a/tests/PHPUnit/Integration/Settings/IntegrationTestCase.php
+++ b/tests/PHPUnit/Integration/Settings/IntegrationTestCase.php
@@ -8,6 +8,7 @@
namespace Piwik\Tests\Integration\Settings;
+use PHPUnit\Framework\Constraint\IsType;
use Piwik\Db;
use Piwik\Settings\Setting;
use Piwik\Settings\Storage;
@@ -26,7 +27,7 @@ class IntegrationTestCase extends \Piwik\Tests\Framework\TestCase\IntegrationTes
*/
protected $settings;
- public function setUp()
+ public function setUp(): void
{
parent::setUp();
Db::destroyDatabaseObject();
@@ -39,7 +40,10 @@ class IntegrationTestCase extends \Piwik\Tests\Framework\TestCase\IntegrationTes
$this->assertEquals($expectedValue, $value);
if (!is_null($expectedType)) {
- $this->assertInternalType($expectedType, $value);
+ static::assertThat(
+ $value,
+ new IsType($expectedType)
+ );
}
}