/** * @test */ public function notificationCanBeRemoved() { $notification = new Notification(); $this->subject->addNotification($notification); $this->subject->removeNotification($notification); $this->assertFalse($this->subject->getNotifications()->contains($notification)); }