Files
asset-management-system/tests/TestCase.php

11 lines
163 B
PHP
Raw Normal View History

2025-12-01 06:41:22 +07:00
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
2025-12-01 07:37:21 +07:00
use CreatesApplication;
2025-12-01 06:41:22 +07:00
}