webworld888/tests/TestCase.php
2021-10-26 19:14:12 +09:00

28 lines
519 B
PHP

<?php
/**
* TestCase.php
*
* PHP version 7
*
* @category Tests
* @package Tests
* @license https://opensource.org/licenses/MIT MIT
* @link https://laravel.com
*/
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
/**
* Abstract Class TestCase
*
* @category Tests
* @package Tests
* @license https://opensource.org/licenses/MIT MIT
* @link https://laravel.com
*/
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}