From 0c4f0775ac8cb8cc397319c764134da50b99f911 Mon Sep 17 00:00:00 2001 From: chaideqing Date: Mon, 13 Mar 2023 14:42:38 +0800 Subject: [PATCH] * Make unit test. --- test/class/execution.class.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/test/class/execution.class.php b/test/class/execution.class.php index 2c93e4b48d..91eb1bcd6b 100644 --- a/test/class/execution.class.php +++ b/test/class/execution.class.php @@ -2846,4 +2846,17 @@ class executionTest } return $executionIDList; } + + /** + * Get user custom workflow field. + * + * @param string $moduleName + * @access public + * @return array + */ + public function getExtendFieldsTest($moduleName = 'project') + { + $extendFields = $this->executionModel->getExtendFields($moduleName); + return $extendFields; + } }