Files
laravel-api-kit/tests/Unit/ExampleTest.php

19 lines
275 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
final class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_that_true_is_true(): void
{
$this->assertTrue(true);
}
}