toby/tests/Unit/ExampleTest.php
2022-01-10 12:25:52 +01:00

16 lines
213 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
public function testExample(): void
{
$this->assertTrue(true);
}
}