Files
EasySoft-ZenTaoPMS/module/action/test/model/getdynamicbyexecution.php
T
2025-10-11 09:36:09 +08:00

35 lines
1.2 KiB
PHP
Executable File

#!/usr/bin/env php
<?php
/**
title=测试 actionModel::getDynamicByExecution();
timeout=0
cid=0
- 执行actionTest模块的getDynamicByExecutionTest方法,参数是1 @0
- 执行actionTest模块的getDynamicByExecutionTest方法,参数是999 @0
- 执行actionTest模块的getDynamicByExecutionTest方法,参数是1, 'admin' @0
- 执行actionTest模块的getDynamicByExecutionTest方法,参数是1, 'all', 'today' @0
- 执行actionTest模块的getDynamicByExecutionTest方法,参数是1, 'all', 'all', '', 'next' @0
*/
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/action.unittest.class.php';
ob_start();
zenData('action')->gen(10);
zenData('user')->gen(5);
zenData('project')->gen(5);
ob_end_clean();
su('admin');
$actionTest = new actionTest();
r($actionTest->getDynamicByExecutionTest(1)) && p() && e('0');
r($actionTest->getDynamicByExecutionTest(999)) && p() && e('0');
r($actionTest->getDynamicByExecutionTest(1, 'admin')) && p() && e('0');
r($actionTest->getDynamicByExecutionTest(1, 'all', 'today')) && p() && e('0');
r($actionTest->getDynamicByExecutionTest(1, 'all', 'all', '', 'next')) && p() && e('0');