🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
639 B
PHP
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;
|
|
}
|
|
}
|