assertSame('notifications', $model->getTable()); $this->assertSame('id', $model->getKeyName()); $this->assertSame(true, $model->timestamps); $this->assertSame(['title', 'message', 'target_group', 'delivery_channels', 'priority', 'status', 'action_url', 'attachment_path', 'scheduled_at', 'sent_at', 'expires_at', 'created_at', 'updated_at', 'deleted_at', 'school_year', 'semester'], $model->getFillable()); } public function test_model_class_loads(): void { $this->assertInstanceOf(Notification::class, new Notification); $this->assertContains(SoftDeletes::class, class_uses_recursive(Notification::class)); } }