mirror of
https://github.com/supanadit/short-url.git
synced 2024-11-10 10:02:20 +00:00
19 lines
255 B
PHP
Executable File
19 lines
255 B
PHP
Executable File
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicTest()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|