+ [misc] Add unit tests for productZen::getEmptyHour() 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 70db7af369
commit 4db1352c71
+13
View File
@@ -1852,4 +1852,17 @@ class productZenTest extends baseTest
if(dao::isError()) return dao::getError();
return $result;
}
/**
* Test getEmptyHour method.
*
* @access public
* @return object
*/
public function getEmptyHourTest()
{
$result = $this->invokeArgs('getEmptyHour', array());
if(dao::isError()) return dao::getError();
return $result;
}
}