Files
ulthon_admin/app/common/test/TestCase.php

17 lines
530 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* app 层测试基建入口(空壳).
*
* 架构约束Base/App 铁律):每新增一个 Base 类,必须同时在 app/ 提供入口类。
* 本类是 extend/base/common/test/TestCaseBase 的 app 层入口,空壳继承。
*
* 业务测试用例应继承本类(而非直接继承 TestCaseBase业务 fixture 工厂
* (创建业务实体、业务表探针重写等)下沉到本类或其子类实现。
*/
namespace app\common\test;
class TestCase extends \base\common\test\TestCaseBase
{
}