2013-01-11 15:14:07 -06:00
|
|
|
<?php
|
|
|
|
|
|
2016-11-29 15:48:33 -06:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
2019-12-06 16:46:02 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2015-05-06 16:58:00 -05:00
|
|
|
|
2015-02-22 20:47:03 -06:00
|
|
|
class ExampleTest extends TestCase
|
|
|
|
|
{
|
|
|
|
|
/**
|
2016-11-29 15:48:33 -06:00
|
|
|
* A basic test example.
|
2015-02-22 20:47:03 -06:00
|
|
|
*/
|
2023-01-03 09:35:24 +00:00
|
|
|
public function test_that_true_is_true(): void
|
2015-02-22 20:47:03 -06:00
|
|
|
{
|
2016-11-29 15:48:33 -06:00
|
|
|
$this->assertTrue(true);
|
2015-02-22 20:47:03 -06:00
|
|
|
}
|
2014-03-15 10:14:55 +00:00
|
|
|
}
|