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