From 01d9217bc11beef114ad57b142f02dbffc754fbc Mon Sep 17 00:00:00 2001 From: yulujie Date: Wed, 4 Sep 2024 14:37:01 +0800 Subject: [PATCH] * [task#127263,doing,0.5h,4h] Add case of ui test to manage members. --- module/execution/test/ui/managemembers.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/module/execution/test/ui/managemembers.php b/module/execution/test/ui/managemembers.php index 1f3aae7ba5..21beae358f 100644 --- a/module/execution/test/ui/managemembers.php +++ b/module/execution/test/ui/managemembers.php @@ -75,7 +75,11 @@ $execution = array( '1' => array( 'id' => '6', ), + '2' => array( + 'id' => '5', + ) ); r($tester->add($execution['0'])) && p('message') && e('添加团队成员成功'); //添加团队成员 -r($tester->delete($execution['1'])) && p('message') && e('添加团队成员成功'); //删除团队成员 +r($tester->delete($execution['1'])) && p('message') && e('删除团队成员成功'); //删除团队成员 +r($tester->remove($execution['2'])) && p('message') && e('移除团队成员成功'); //移除团队成员 $tester->closeBrowser();