2021-12-03 02:36:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Unit;
|
|
|
|
|
2023-01-27 11:16:25 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2021-12-03 02:36:25 +00:00
|
|
|
|
|
|
|
class ExampleTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* A basic test example.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2023-01-27 11:16:25 +00:00
|
|
|
public function test_that_true_is_true()
|
2021-12-03 02:36:25 +00:00
|
|
|
{
|
|
|
|
$this->assertTrue(true);
|
|
|
|
}
|
|
|
|
}
|