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 'plugins/PrivacyManager/tests/System/APITest.php')
-rw-r--r--plugins/PrivacyManager/tests/System/APITest.php16
1 files changed, 7 insertions, 9 deletions
diff --git a/plugins/PrivacyManager/tests/System/APITest.php b/plugins/PrivacyManager/tests/System/APITest.php
index bcd05f829c..c46f7416cc 100644
--- a/plugins/PrivacyManager/tests/System/APITest.php
+++ b/plugins/PrivacyManager/tests/System/APITest.php
@@ -31,18 +31,17 @@ class APITest extends SystemTestCase
*/
private $api;
- public function setUp()
+ public function setUp(): void
{
parent::setUp();
$this->api = API::getInstance();
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage No list of visits given
- */
public function test_exportDataSubjects_failsWhenNoVisitsGiven()
{
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('No list of visits given');
+
$this->assertNull($this->api->exportDataSubjects(false));
}
@@ -65,12 +64,11 @@ class APITest extends SystemTestCase
$this->assertJsonResponse('exportDataSubject_allVisits', $result);
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage No idsite key set for visit at index 1
- */
public function test_exportDataSubjects_failsWhenMissingIdSite()
{
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('No idsite key set for visit at index 1');
+
$this->assertNull($this->api->exportDataSubjects([['idsite' => '9999', 'idvisit' => '9999'], []]));
}