6 require_once(__DIR__ .
"/../../BaseNotificationSetUp.php");
20 $this->assertInstanceOf(StandardNotificationRenderer::class, $renderer);
27 $icon = $this->
getUIFactory()->symbol()->icon()->standard(
"mail",
"mail");
28 $item = $this->
getUIFactory()->item()->notification(
"hello", $icon);
30 $standard_notification = $this->factory->standard($this->
id)->withNotificationItem($item);
32 $this->assertEquals($item, $renderer->getNotificationComponentForItem($standard_notification));
39 $icon = $this->
getUIFactory()->symbol()->icon()->standard(
"mail",
"mail");
40 $item = $this->
getUIFactory()->item()->notification(
"hello", $icon);
42 $standard_notification = $this->factory->standard($this->
id)
43 ->withNotificationItem($item)
44 ->withClosedCallable(
function () {
47 $item = $item->withCloseAction(
"some_path/src/GlobalScreen/Client/notify.php?mode=closed&item_id=" . $this->
hash($this->
id->serialize()));
48 $this->assertEquals($item, $renderer->getNotificationComponentForItem($standard_notification));
Class BaseNotificationSetUp.
Class StandardNotificationTest.
testGetNotificationComponentForItemWithCloseCallable()
Class StandardNotificationGroupRenderer.
testGetNotificationComponentForItem()