16 lines
213 B
PHP
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);
|
|
}
|
|
}
|