mirror of
https://gitee.com/celaraze/chemex.git
synced 2024-12-02 03:07:49 +08:00
19 lines
249 B
PHP
Executable File
19 lines
249 B
PHP
Executable File
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class BaseTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic unit test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test()
|
|
{
|
|
static::assertTrue(true);
|
|
}
|
|
}
|