21 require_once(__DIR__ .
"/../BaseNotificationSetUp.php");
32 $this->assertInstanceOf(MainNotificationCollector::class, $collector);
40 $this->assertFalse($collector->hasItems());
42 $group_notification = $this->factory->standardGroup($this->
id);
45 $this->assertTrue($collector->hasItems());
53 $this->assertEquals([], $collector->getNotifications());
55 $group_notification = $this->factory->standardGroup($this->
id);
58 $this->assertEquals([$group_notification], $collector->getNotifications());
60 $group_notification = $this->factory->standardGroup($this->
id);
63 $this->assertEquals([$group_notification, $group_notification], $collector->getNotifications());
71 $this->assertEquals(0, $collector->getAmountOfNewNotifications());
73 $group_notification = $this->factory->standardGroup($this->
id);
76 $this->assertEquals(0, $collector->getAmountOfNewNotifications());
78 $group_notification = $this->factory->standardGroup($this->
id);
79 $standard_notification = $this->factory->standard($this->
id)->withNewAmount(3);
80 $group_notification->addNotification($standard_notification);
81 $group_notification->addNotification($standard_notification);
85 $this->assertEquals(4, $collector->getAmountOfNewNotifications());
93 $this->assertEquals(0, $collector->getAmountOfOldNotifications());
95 $group_notification = $this->factory->standardGroup($this->
id);
98 $this->assertEquals(0, $collector->getAmountOfOldNotifications());
100 $group_notification = $this->factory->standardGroup($this->
id);
101 $standard_notification = $this->factory->standard($this->
id)->withOldAmount(3);
102 $group_notification->addNotification($standard_notification);
103 $group_notification->addNotification($standard_notification);
107 $this->assertEquals(4, $collector->getAmountOfOldNotifications());
116 $this->assertEquals([], $collector->getNotificationsIdentifiersAsArray());
118 $group_notification = $this->factory->standardGroup($this->
id);
122 $this->assertEquals([$this->
id->serialize()], $collector->getNotificationsIdentifiersAsArray());
124 $group_notification = $this->factory->standardGroup($this->
id);
128 $this->assertEquals([$this->
id->serialize(), $this->
id->serialize()], $collector->getNotificationsIdentifiersAsArray());
Class MainNotificationCollector.
testGetNotificationsIdentifiersAsArray()
Class BaseNotificationSetUp.
Class MainNotificationCollectorTest.
testGetAmountOfOldNotifications()
getDummyNotificationsProviderWithNotifications($notifications)
testGetAmountOfNewNotifications()