Files
EasySoft-ZenTaoPMS/module/epic/test/lib/model.class.php
T
2025-11-05 19:31:07 +08:00

26 lines
639 B
PHP

<?php
declare(strict_types = 1);
require_once dirname(__FILE__, 5) . '/test/lib/test.class.php';
class epicModelTest extends baseTest
{
protected $moduleName = 'epic';
protected $className = 'model';
/**
* Test getToAndCcList method.
*
* @param object $story 故事对象
* @param string $actionType 操作类型
* @access public
* @return mixed
*/
public function getToAndCcListTest($story, $actionType)
{
$result = $this->invokeArgs('getToAndCcList', array($story, $actionType));
if(dao::isError()) return dao::getError();
return $result;
}
}