Files
alrahma_sunday_school_api/tests/Unit/Models/UserRoleTest.php
T
2026-06-09 00:03:03 -04:00

25 lines
667 B
PHP

<?php
namespace Tests\Unit\Models;
use App\Models\UserRole;
use PHPUnit\Framework\TestCase;
class UserRoleTest extends TestCase
{
public function test_model_metadata_is_converted(): void
{
$model = new UserRole;
$this->assertSame('user_roles', $model->getTable());
$this->assertSame('id', $model->getKeyName());
$this->assertSame(true, $model->timestamps);
$this->assertSame(['user_id', 'role_id', 'created_at', 'updated_at', 'deleted_at', 'updated_by'], $model->getFillable());
}
public function test_model_class_loads(): void
{
$this->assertInstanceOf(UserRole::class, new UserRole);
}
}