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