mirror of https://github.com/4xmen/xshop.git
17 lines
237 B
PHTML
17 lines
237 B
PHTML
6 months ago
|
<?php
|
||
|
|
||
|
namespace Tests\Unit;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class SampleTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* A basic unit test example.
|
||
|
*/
|
||
|
public function test_example(): void
|
||
|
{
|
||
|
$this->assertTrue(true);
|
||
|
}
|
||
|
}
|