5 require_once(__DIR__ .
"/../BaseNotificationSetUp.php");
14 $standard_notification = $this->factory->standard($this->
id);
16 $this->assertInstanceOf(StandardNotification::class, $standard_notification);
17 $this->assertEquals($this->
id, $standard_notification->getProviderIdentification());
22 $icon = $this->
getUIFactory()->symbol()->icon()->standard(
"mail",
"mail");
23 $item = $this->
getUIFactory()->item()->notification(
"hello", $icon);
25 $standard_notification = $this->factory->standard($this->
id)->withNotificationItem($item);
26 $this->assertEquals($item, $standard_notification->getNotificationItem());
31 $standard_notification = $this->factory->standard($this->
id);
33 $this->assertEquals(1, $standard_notification->getNewAmount());
34 $standard_notification = $standard_notification->withNewAmount(13);
35 $this->assertEquals(13, $standard_notification->getNewAmount());
40 $standard_notification = $this->factory->standard($this->
id);
42 $this->assertEquals(0, $standard_notification->getOldAmount());
43 $standard_notification = $standard_notification->withOldAmount(13);
44 $this->assertEquals(13, $standard_notification->getOldAmount());
52 $standard_notification = $this->factory->standard($this->
id);
53 $this->assertEquals($this->
id, $standard_notification->getProviderIdentification());
58 $standard_notification = $this->factory->standard($this->
id);
59 $this->assertInstanceOf(
60 StandardNotificationRenderer::class,
61 $standard_notification->getRenderer($this->getUIFactory())
67 $callable =
function () {
70 $standard_notification = $this->factory->standard($this->
id);
71 $this->assertEquals(
function () {
72 }, $standard_notification->getOpenedCallable());
73 $standard_notification = $standard_notification->withOpenedCallable($callable);
74 $this->assertEquals($callable, $standard_notification->getOpenedCallable());
78 $callable =
function () {
81 $standard_notification = $this->factory->standard($this->
id);
82 $this->assertNull($standard_notification->getClosedCallable());
83 $standard_notification = $standard_notification->withClosedCallable($callable);
84 $this->assertEquals($callable, $standard_notification->getClosedCallable());
88 $callable =
function () {
91 $standard_notification = $this->factory->standard($this->
id);
92 $this->assertFalse($standard_notification->hasClosedCallable());
93 $standard_notification = $standard_notification->withClosedCallable($callable);
94 $this->assertTrue($standard_notification->hasClosedCallable());
testGetProviderIdentification()
Tests on AbstractBaseNotification.
Class BaseNotificationSetUp.
Class StandardNotificationTest.
testWithNotificationItem()