znt/module/tree/test/model/setmodulelang.php

35 lines
1.3 KiB
PHP
Executable file
Raw Permalink 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=测试 treeModel::setModuleLang();
timeout=0
cid=19391
- 步骤1正常情况 - 验证name属性属性name @名称
- 步骤2验证short属性属性short @简称
- 步骤3验证返回对象类型 @object
- 步骤4验证同时检查多个属性
- 属性name @名称
- 属性short @简称
- 步骤5再次调用验证覆盖行为属性name @名称
*/
// 1. 导入依赖(路径固定,不可修改)
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/model.class.php';
// 2. 用户登录(选择合适角色)
su('admin');
// 3. 创建测试实例(变量名与模块名一致)
$treeTest = new treeModelTest();
// 4. 强制要求必须包含至少5个测试步骤
r($treeTest->setModuleLangTest()) && p('name') && e('名称'); // 步骤1正常情况 - 验证name属性
r($treeTest->setModuleLangTest()) && p('short') && e('简称'); // 步骤2验证short属性
r(gettype($treeTest->setModuleLangTest())) && p() && e('object'); // 步骤3验证返回对象类型
r($treeTest->setModuleLangTest()) && p('name,short') && e('名称,简称'); // 步骤4验证同时检查多个属性
r($treeTest->setModuleLangTest()) && p('name') && e('名称'); // 步骤5再次调用验证覆盖行为