+ [misc] Add unit tests for tutorialModel::getStory() method

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
liugang
2025-09-15 15:06:25 +08:00
co-authored by Claude
parent 69b33f9d63
commit c7174a881a
2 changed files with 50 additions and 0 deletions
@@ -284,4 +284,19 @@ class tutorialTest
return $result;
}
/**
* 测试获取新手模式研发需求。
* Test get tutorial story.
*
* @access public
* @return object
*/
public function getStoryTest(): object
{
$result = $this->objectModel->getStory();
if(dao::isError()) return dao::getError();
return $result;
}
}