+ Move unit test from test directory to each module.

This commit is contained in:
zhouxin
2023-04-24 02:16:47 +00:00
parent 8b32e6592a
commit 4efea42989
1671 changed files with 83077 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#!/usr/bin/env php
<?php
include dirname(__FILE__, 5) . "/test/lib/init.php";
include dirname(__FILE__, 2) . '/stakeholder.class.php';
su('admin');
/**
title=测试 stakeholderModel->batchCreate();
cid=1
pid=1
>> 6
>> 6
>> 6
>> 6
*/
$projectIDList = array('11', '31', '61');
$realnames = array('开发38', '开发29', '开发30');
$accounts = array('test28', 'test29', 'test30', 'dev1', 'dev13', 'dev12');
$normalStakeholder = array('realnames' => $realnames, 'accounts' => $accounts);
$noRealnames = array('accounts' => $accounts);
$stakeholder = new stakeholderTest();
r(count($stakeholder->batchCreateTest($projectIDList[0], $normalStakeholder))) && p() && e('6');
r(count($stakeholder->batchCreateTest($projectIDList[1], $normalStakeholder))) && p() && e('6');
r(count($stakeholder->batchCreateTest($projectIDList[2], $normalStakeholder))) && p() && e('6');
r(count($stakeholder->batchCreateTest($projectIDList[0], $noRealnames))) && p() && e('6');