insert([ 'id' => 1, 'title' => 'Deleted', 'message' => 'Message', 'target_group' => 'parent', 'delivery_channels' => json_encode(['in_app']), 'deleted_at' => now(), 'created_at' => now(), 'updated_at' => now(), ]); $service = new NotificationDeletedService; $result = $service->list(); $this->assertCount(1, $result['notifications']); $this->assertSame(1, $result['notifications'][0]['id']); } }