canyin-project/ybcy/vendor/easyexpress/shunfeng/tests/TestCase.php
2024-11-01 16:07:54 +08:00

25 lines
375 B
PHP

<?php
namespace EasyExpress\Tests;
use PHPUnit\Framework\TestCase as BaseTestCase;
/**
* class TestCase.
*/
class TestCase extends BaseTestCase
{
/**
* Tear down the test case.
*/
public function tearDown()
{
}
/**
* Run extra tear down code.
*/
protected function finish()
{
// call more tear down methods
}
}