Files
EasySoft-ZenTaoPMS/module/tutorial/test/model/getdoc.php
T
2025-11-14 13:05:25 +08:00

33 lines
1.1 KiB
PHP
Executable File

#!/usr/bin/env php
<?php
/**
title=测试 tutorialModel::getDoc();
timeout=0
cid=19423
- 步骤1:验证文档ID属性id @1
- 步骤2:验证文档标题属性title @Test Doc
- 步骤3:验证文档类型属性type @text
- 步骤4:验证文档状态属性status @normal
- 步骤5:验证文档库ID属性lib @2
*/
// 1. 导入依赖(路径固定,不可修改)
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/tutorial.unittest.class.php';
// 2. 用户登录(选择合适角色)
su('admin');
// 3. 创建测试实例(变量名与模块名一致)
$tutorialTest = new tutorialTest();
// 4. 测试步骤(必须包含至少5个测试步骤)
r($tutorialTest->getDocTest()) && p('id') && e('1'); // 步骤1:验证文档ID
r($tutorialTest->getDocTest()) && p('title') && e('Test Doc'); // 步骤2:验证文档标题
r($tutorialTest->getDocTest()) && p('type') && e('text'); // 步骤3:验证文档类型
r($tutorialTest->getDocTest()) && p('status') && e('normal'); // 步骤4:验证文档状态
r($tutorialTest->getDocTest()) && p('lib') && e('2'); // 步骤5:验证文档库ID