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/Unit/DataTable/ManagerTest.php')
-rw-r--r--tests/PHPUnit/Unit/DataTable/ManagerTest.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/PHPUnit/Unit/DataTable/ManagerTest.php b/tests/PHPUnit/Unit/DataTable/ManagerTest.php
index 74eac55054..7c482a585d 100644
--- a/tests/PHPUnit/Unit/DataTable/ManagerTest.php
+++ b/tests/PHPUnit/Unit/DataTable/ManagerTest.php
@@ -19,7 +19,7 @@ class ManagerTest extends \PHPUnit\Framework\TestCase
*/
private $manager;
- public function setUp()
+ public function setUp(): void
{
parent::setUp();
$this->manager = new Manager();
@@ -30,12 +30,11 @@ class ManagerTest extends \PHPUnit\Framework\TestCase
return new DataTable();
}
- /**
- * @expectedException \Piwik\DataTable\TableNotFoundException
- * @expectedExceptionMessage table id 1 not found in memory
- */
public function test_getTable_shouldThrowException_IfTableIdDoesNotExist()
{
+ $this->expectException(\Piwik\DataTable\TableNotFoundException::class);
+ $this->expectExceptionMessage('table id 1 not found in memory');
+
$this->manager->getTable(1);
}