+ [misc] Add unit tests for productZen::getBackLink4Create() 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 60ae5b5bd8
commit d13196753c
+14
View File
@@ -1717,4 +1717,18 @@ class productZenTest extends baseTest
return $result;
}
/**
* Test getBackLink4Create method.
*
* @param string $extra
* @access public
* @return string
*/
public function getBackLink4CreateTest(string $extra = '')
{
$result = $this->invokeArgs('getBackLink4Create', array($extra));
if(dao::isError()) return dao::getError();
return $result;
}
}