model = new NotificationModel(); } public function testGetActiveNotifications() { $result = $this->model->getActiveNotifications(); $this->assertIsArray($result); } public function testGetDeletedNotifications() { $result = $this->model->getDeletedNotifications(); $this->assertIsArray($result); } public function testRestoreNotification() { // Create + soft delete a test record $id = $this->model->insert([ 'title' => 'Test restore', 'message' => 'Test message', 'target_group' => 'parent', 'delivery_channels' => 'in_app', 'priority' => 'normal', 'status' => 'sent', 'scheduled_at' => date('Y-m-d H:i:s'), ]); $this->model->delete($id); $this->assertNotNull($this->model->onlyDeleted()->find($id)); // Restore $this->model->restoreNotification($id); $this->assertNull($this->model->onlyDeleted()->find($id)); } }