18 lines
247 B
PHP
18 lines
247 B
PHP
<?php
|
|
/**
|
|
* @desc TestCase.php 描述信息
|
|
* @author Tinywan(ShaoBo Wan)
|
|
* @date 2022/3/18 9:46
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
namespace Tinywan\Tests;
|
|
|
|
use PHPUnit\Framework\TestCase as BaseTestCase;
|
|
|
|
class TestCase extends BaseTestCase
|
|
{
|
|
|
|
} |