Files
alrahma_sunday_school/tests/app/Models/FinalExamModelTest.php
T
root f3ac521d7c
Tests / PHPUnit (push) Failing after 1m18s
tests fixes
2026-07-13 01:02:03 -04:00

26 lines
509 B
PHP

<?php
namespace Tests\App\Models;
use Tests\Support\ModelCrudTestCase;
use App\Models\FinalExamModel;
class FinalExamModelTest extends ModelCrudTestCase
{
public function testCanInsertAndRetrieve()
{
$this->assertModelCanInsertAndRetrieve(FinalExamModel::class);
}
public function testCanUpdate()
{
$this->assertModelCanUpdate(FinalExamModel::class);
}
public function testCanDelete()
{
$this->assertModelCanDelete(FinalExamModel::class);
}
}