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

37 lines
657 B
PHP

<?php
/**
* ExampleTest.php
*
* PHP version 7
*
* @category Tests
* @package Tests\Unit
* @license https://opensource.org/licenses/MIT MIT
* @link https://laravel.com
*/
namespace Tests\Unit;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
/**
* Class ExampleTest
*
* @category Tests
* @package Tests\Unit
* @license https://opensource.org/licenses/MIT MIT
* @link https://laravel.com
*/
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
}