Files
Subscription-Content-Manage…/tests/Unit/ExampleTest.php
Kwesi Banson Jnr c7f93a7dc1 Initial commit
2026-09-09 09:50:06 +00:00

17 lines
243 B
PHP

<?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);
}
}