+ [misc] Add unit tests for tutorialModel::getColumns() 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:26 +08:00
co-authored by Claude
parent 69083cba57
commit 03bb602914
2 changed files with 48 additions and 0 deletions
@@ -826,4 +826,19 @@ class tutorialTest
return $result;
}
/**
* 测试获取新手模式看板列。
* Test get columns.
*
* @access public
* @return array
*/
public function getColumnsTest(): array
{
$result = $this->objectModel->getColumns();
if(dao::isError()) return dao::getError();
return $result;
}
}