21require_once(__DIR__ . 
"/../../BaseNotificationSetUp.php");
 
   31        $this->assertInstanceOf(StandardNotificationGroupRenderer::class, $renderer);
 
   37        $icon = $this->
getUIFactory()->symbol()->icon()->standard(
"mail", 
"mail");
 
   38        $item = $this->
getUIFactory()->item()->notification(
"hello", $icon);
 
   40        $slate = $this->
getUIFactory()->mainControls()->slate()->notification(
"title", [$item]);
 
   42        $group_notification = $this->factory->standardGroup($this->
id)->withTitle(
"title")->addNotification(
 
   43            $this->factory->standard($this->id)->withNotificationItem($item)
 
   46        $this->assertEquals($slate, $renderer->getNotificationComponentForItem($group_notification));
 
Class BaseNotificationSetUp.
 
Class StandardNotificationGroupRenderer.
 
Class StandardNotificationTest.
 
testGetNotificationComponentForItem()