+ [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;
}
}
+29
View File
@@ -0,0 +1,29 @@
#!/usr/bin/env php
<?php
/**
title=测试 tutorialModel::getReview();
timeout=0
cid=0
- 执行tutorialTest模块的getReviewTest方法 属性id @1
- 执行tutorialTest模块的getReviewTest方法 属性project @2
- 执行tutorialTest模块的getReviewTest方法 属性title @Test Review
- 执行tutorialTest模块的getReviewTest方法 属性status @pass
- 执行tutorialTest模块的getReviewTest方法 属性category @PP
*/
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/tutorial.unittest.class.php';
su('admin');
$tutorialTest = new tutorialTest();
r($tutorialTest->getReviewTest()) && p('id') && e('1');
r($tutorialTest->getReviewTest()) && p('project') && e('2');
r($tutorialTest->getReviewTest()) && p('title') && e('Test Review');
r($tutorialTest->getReviewTest()) && p('status') && e('pass');
r($tutorialTest->getReviewTest()) && p('category') && e('PP');