17 lines
244 B
PHP
17 lines
244 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Jltx\Routes\Tests\Unit;
|
||
|
|
|
||
|
|
use PHPUnit\Framework\TestCase;
|
||
|
|
|
||
|
|
class SampleTest extends TestCase
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* A basic test example.
|
||
|
|
*/
|
||
|
|
public function test_example(): void
|
||
|
|
{
|
||
|
|
$this->assertTrue(true);
|
||
|
|
}
|
||
|
|
}
|