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/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php')
-rw-r--r--plugins/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/plugins/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php b/plugins/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php
index 0c0130e5b6..4977037c72 100644
--- a/plugins/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php
+++ b/plugins/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php
@@ -24,7 +24,7 @@ class TrackerUpdaterTest extends IntegrationTestCase
private $dir;
private $trackerJsChangedEventPath = null;
- public function setUp()
+ public function setUp(): void
{
parent::setUp();
$this->dir = PIWIK_DOCUMENT_ROOT . '/plugins/CustomJsTracker/tests/resources/';
@@ -33,7 +33,7 @@ class TrackerUpdaterTest extends IntegrationTestCase
$this->cleanUp();
}
- public function tearDown()
+ public function tearDown(): void
{
parent::tearDown();
@@ -112,12 +112,11 @@ class TrackerUpdaterTest extends IntegrationTestCase
$this->assertTrue(true);
}
- /**
- * @expectedException \Piwik\Plugins\CustomJsTracker\Exception\AccessDeniedException
- * @expectedExceptionMessage not writable
- */
public function test_checkWillSucceed_shouldNotThrowExceptionIfTargetIsNotWritable()
{
+ $this->expectException(\Piwik\Plugins\CustomJsTracker\Exception\AccessDeniedException::class);
+ $this->expectExceptionMessage('not writable');
+
$updater = $this->makeUpdater(null, $this->dir . 'not-writable/MyNotExisIngFilessss.js');
$updater->checkWillSucceed();
}