+ [misc] Add unit tests for tutorialModel::getDocTemplateSpaces() method

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
liugang
2025-09-15 15:06:27 +08:00
co-authored by Claude
parent f1dfc1c73f
commit 5da7b1e517
2 changed files with 47 additions and 0 deletions
@@ -1124,4 +1124,18 @@ class tutorialTest
return $result;
}
/**
* Test getDocTemplateSpaces method.
*
* @access public
* @return array
*/
public function getDocTemplateSpacesTest(): array
{
$result = $this->objectModel->getDocTemplateSpaces();
if(dao::isError()) return dao::getError();
return $result;
}
}