-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPrizeTest.php
61 lines (59 loc) · 1.5 KB
/
PrizeTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
use PHPUnit\Framework\TestCase;
use Hillpy\PHPTools\Prize\Prize;
class PrizeTest extends TestCase
{
public function testPrize()
{
$Prize = Prize::getInstance();
$data = array(
array(
'name' => 'macbook pro',
'amount' => 5,
'_amount' => 0,
'prob' => 100
),
array(
'name' => 'hhkb',
'amount' => 50,
'_amount' => 0,
'prob' => 200
),
array(
'name' => 'js红皮书',
'amount' => 200,
'_amount' => 0,
'prob' => 400
)
);
$noPrizeResData = array(
'name' => '未中奖',
'count' => 0
);
$resData = array(
array(
'name' => 'macbook pro',
'count' => 0
),
array(
'name' => 'hhkb',
'count' => 0
),
array(
'name' => 'js红皮书',
'count' => 0
)
);
$Prize->setData($data);
for ($i = 0; $i < 100; $i++) {
$res = $Prize->getPrize();
if ($res['key'] >= 0) {
$resData[$res['key']]['count']++;
} else {
$noPrizeResData['count']++;
}
}
array_unshift($resData, $noPrizeResData);
var_dump($resData);
}
}