1
0
mirror of https://github.com/robonen/metr.git synced 2026-06-20 01:55:22 +00:00
Files
2022-05-25 22:37:52 +07:00

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