+ [misc] Add unit tests for tutorialModel::getReview() 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 6c1cce12f6
commit bd71bda884
2 changed files with 44 additions and 0 deletions
@@ -751,4 +751,19 @@ class tutorialTest
return $result;
}
/**
* 测试获取新手模式评审。
* Test get review.
*
* @access public
* @return object
*/
public function getReviewTest(): object
{
$result = $this->objectModel->getReview();
if(dao::isError()) return dao::getError();
return $result;
}
}