diff --git a/module/product/test/lib/zen.class.php b/module/product/test/lib/zen.class.php index 2b8445c643..b68aaea1bc 100644 --- a/module/product/test/lib/zen.class.php +++ b/module/product/test/lib/zen.class.php @@ -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; + } }