assertSame('student_allergies', $model->getTable()); $this->assertSame('id', $model->getKeyName()); $this->assertSame(false, $model->timestamps); $this->assertSame(['student_id', 'allergy'], $model->getFillable()); } public function test_model_class_loads(): void { $this->assertInstanceOf(StudentAllergy::class, new StudentAllergy); } }