14 lines
222 B
PHP
14 lines
222 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
public function testBasicTest(): void
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|