14 lines
193 B
PHP
14 lines
193 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Tests;
|
||
|
|
|
||
|
|
use PHPUnit\Framework\TestCase;
|
||
|
|
|
||
|
|
final class SmokeTest extends TestCase
|
||
|
|
{
|
||
|
|
public function testPhpunitRuns(): void
|
||
|
|
{
|
||
|
|
self::assertTrue(true);
|
||
|
|
}
|
||
|
|
}
|