aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/lib/classes/NotificationCenterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/lib/classes/NotificationCenterTest.php')
-rw-r--r--tests/unit/lib/classes/NotificationCenterTest.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unit/lib/classes/NotificationCenterTest.php b/tests/unit/lib/classes/NotificationCenterTest.php
index 687183e..8a6ba9a 100644
--- a/tests/unit/lib/classes/NotificationCenterTest.php
+++ b/tests/unit/lib/classes/NotificationCenterTest.php
@@ -20,6 +20,8 @@ interface Observer
# @see http://php.net/language.oop5.magic
class NotificationCenterTestSoundexPredicate
{
+ private $goldStandard;
+
public function __construct($goldStandard)
{
$this->goldStandard = $goldStandard;
@@ -33,6 +35,9 @@ class NotificationCenterTestSoundexPredicate
class NotificationCenterTest extends \Codeception\Test\Unit
{
+ private $observer;
+ private $subject;
+
public function setUp(): void
{
$this->observer = $this->createMock("Observer");