19 lines
274 B
PHP
19 lines
274 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Tests\Unit;
|
||
|
|
|
||
|
|
use PHPUnit\Framework\TestCase;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @coversNothing
|
||
|
|
*/
|
||
|
|
final class HelloWorldTest extends TestCase
|
||
|
|
{
|
||
|
|
// TODO: Delete this file
|
||
|
|
public function testTrue(): void
|
||
|
|
{
|
||
|
|
$this->assertTrue(true);
|
||
|
|
}
|
||
|
|
}
|