Teren-app/tests/TestCase.php
2025-03-25 21:38:24 +01:00

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);
}
}