1
0
Fork 0
mirror of https://github.com/prurigro/hypothetical.git synced 2025-01-10 00:26:30 -05:00
hypothetical/tests/Unit/ExampleTest.php
2022-05-23 21:01:33 -04:00

18 lines
264 B
PHP

<?php
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function test_that_true_is_true()
{
$this->assertTrue(true);
}
}