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/Storage/Backend/ConfigTest.php')
-rw-r--r--tests/PHPUnit/Integration/Settings/Storage/Backend/ConfigTest.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/PHPUnit/Integration/Settings/Storage/Backend/ConfigTest.php b/tests/PHPUnit/Integration/Settings/Storage/Backend/ConfigTest.php
index 21e375325f..ce75cd8e59 100644
--- a/tests/PHPUnit/Integration/Settings/Storage/Backend/ConfigTest.php
+++ b/tests/PHPUnit/Integration/Settings/Storage/Backend/ConfigTest.php
@@ -41,7 +41,7 @@ class ConfigTest extends IntegrationTestCase
*/
private $allBackends = array();
- public function setUp()
+ public function setUp(): void
{
parent::setUp();
@@ -56,12 +56,11 @@ class ConfigTest extends IntegrationTestCase
return new Config($plugin);
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage No section given
- */
public function test_construct_shouldThrowAnException_IfSectionIsEmpty()
{
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('No section given');
+
$this->createSettings('');
}