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/Category/CategoryListTest.php')
-rw-r--r--tests/PHPUnit/Unit/Category/CategoryListTest.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/PHPUnit/Unit/Category/CategoryListTest.php b/tests/PHPUnit/Unit/Category/CategoryListTest.php
index 371a674e3d..32392b2ac4 100644
--- a/tests/PHPUnit/Unit/Category/CategoryListTest.php
+++ b/tests/PHPUnit/Unit/Category/CategoryListTest.php
@@ -23,7 +23,7 @@ class CategoryListTest extends \PHPUnit\Framework\TestCase
*/
private $categoryList;
- public function setUp()
+ public function setUp(): void
{
$this->categoryList = new CategoryList();
}
@@ -40,12 +40,11 @@ class CategoryListTest extends \PHPUnit\Framework\TestCase
$this->assertSame(array('myTest' => $category), $this->categoryList->getCategories());
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Category myTest already exists
- */
public function test_addCategory_shouldThrowException_IfAddingSameCategoryIdTwice()
{
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('Category myTest already exists');
+
$this->addCategory('myTest');
$this->addCategory('myTest');
}