tello2 / app /tests /Unit /ExampleTest.php
ladogton2010's picture
Initial project
c12e4e4
raw
history blame contribute delete
243 Bytes
<?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);
}
}