+ [misc] Add unit tests for productZen::getStoryIdList() method

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
liugang
2025-12-02 16:43:27 +08:00
committed by sunhao
co-authored by Claude
parent 4b8771d52d
commit 1fb2395fce
+14
View File
@@ -2174,4 +2174,18 @@ class productZenTest extends baseTest
return array('count' => 0);
}
/**
* Test getStoryIdList method.
*
* @param array $stories
* @access public
* @return array
*/
public function getStoryIdListTest(array $stories = array())
{
$result = $this->invokeArgs('getStoryIdList', array($stories));
if(dao::isError()) return dao::getError();
return $result;
}
}