28 lines
740 B
PHP
Executable File
28 lines
740 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
declare(strict_types=1);
|
|
|
|
include dirname(__FILE__, 5) . '/test/lib/init.php';
|
|
include dirname(__FILE__, 2) . '/programplan.class.php';
|
|
su('admin');
|
|
|
|
zdTable('project')->config('getselfandchildrenlist')->gen(6);
|
|
/**
|
|
|
|
title=测试programplanModel->getSelfAndChildrenList();
|
|
cid=1
|
|
pid=1
|
|
|
|
测试id为2时获取自己的状态 >> doing
|
|
测试id为2时获取自己某一个后代的状态 >> 2
|
|
|
|
*/
|
|
|
|
$plan = new programplanTest();
|
|
$topPlan = $plan->getSelfAndChildrenListTest(2);
|
|
|
|
$topPlanCount = count($topPlan[2]);
|
|
|
|
r($topPlan[2][2]) && p('status') && e('doing'); // 测试id为2时获取自己的状态
|
|
r($topPlanCount - 1) && p('') && e(3); // 测试id为2时获取自己后代的个数
|