+ [misc] Add unit tests for tutorialModel::getBuild() 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:26 +08:00
co-authored by Claude
parent d0cd9b69b2
commit b1dd3445dc
2 changed files with 54 additions and 0 deletions
@@ -436,4 +436,19 @@ class tutorialTest
return $result;
}
/**
* 测试获取新手模式版本。
* Test get build.
*
* @access public
* @return object
*/
public function getBuildTest(): object
{
$result = $this->objectModel->getBuild();
if(dao::isError()) return dao::getError();
return $result;
}
}