Web_Crawler_API/tests/TestCase.php
2023-05-30 12:56:38 +03:00

10 lines
163 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}