* [misc] Enhance unit tests for programplanModel::getSiblings() method

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
liugang
2025-09-25 09:16:28 +08:00
co-authored by Claude
parent 7d11a52168
commit 2d4e47c560
3 changed files with 77 additions and 16 deletions
@@ -459,7 +459,13 @@ class programplanTest
if(dao::isError()) return dao::getError();
return $objects;
$result = array();
foreach($objects as $planID => $siblings)
{
$result[$planID] = count($siblings);
}
return $result;
}
/**