Files
EasySoft-ZenTaoPMS/module/mr/test/model/__construct.php
T
2025-09-15 15:06:21 +08:00

33 lines
1.3 KiB
PHP
Executable File
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.
#!/usr/bin/env php
<?php
/**
title=测试 mrModel::__construct();
timeout=0
cid=0
- 步骤1:默认参数,rawModule为mr @mr
- 步骤2:指定appNamerawModule为mr @mr
- 步骤3:默认参数,rawModule为pullreq @pullreq
- 步骤4:指定appNamerawModule为pullreq @pullreq
- 步骤5:边界情况,rawModule为其他值 @mr
*/
// 1. 导入依赖(路径固定,不可修改)
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/mr.unittest.class.php';
// 2. 用户登录(选择合适角色)
su('admin');
// 3. 创建测试实例(变量名与模块名一致)
$mrTest = new mrTest();
// 4. 🔴 强制要求:必须包含至少5个测试步骤
r($mrTest->constructTest('', 'mr')) && p() && e('mr'); // 步骤1:默认参数,rawModule为mr
r($mrTest->constructTest('zentao', 'mr')) && p() && e('mr'); // 步骤2:指定appNamerawModule为mr
r($mrTest->constructTest('', 'pullreq')) && p() && e('pullreq'); // 步骤3:默认参数,rawModule为pullreq
r($mrTest->constructTest('zentao', 'pullreq')) && p() && e('pullreq'); // 步骤4:指定appNamerawModule为pullreq
r($mrTest->constructTest('', 'other')) && p() && e('mr'); // 步骤5:边界情况,rawModule为其他值