master_template/tests/Unit/ExampleTest.php

17 lines
243 B
PHP
Raw Permalink Normal View History

2024-06-10 12:21:58 +00:00
<?php
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_that_true_is_true(): void
{
$this->assertTrue(true);
}
}