自动化测试
Testing Is Documentation
QueryPHP 自身经过大量的单元测试用例验证过,取得了非常好的效果,对于业务层测试来说,我们也提供了基础的测试功能。
Uses
php
<?php
use Leevel\Kernel\Utils\Api;
基本使用方法
fixture 定义
tests/Example/ExampleTest.php
php
<?php
declare(strict_types=1);
namespace Tests\Example;
use Tests\TestCase;
/**
* @internal
*/
final class ExampleTest extends TestCase
{
public function testBaseUse(): void
{
static::assertSame('QueryPHP', 'QueryPHP');
}
}