-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathInsertionSortTest.php
More file actions
74 lines (68 loc) · 2.06 KB
/
InsertionSortTest.php
File metadata and controls
74 lines (68 loc) · 2.06 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
declare(strict_types=1);
namespace PHPJava\Tests\Cases;
use PHPJava\IO\Standard\Output;
class InsertionSortTest extends Base
{
protected $fixtures = [
'InsertionSortTest',
];
public function testInsertionSortAsc()
{
$calculatedValue = static::$initiatedJavaClasses['InsertionSortTest']
->getInvoker()
->getStatic()
->getMethods()
->call('asc');
$result = Output::getHeapspace();
$this->assertEquals(
file_get_contents(__DIR__ . '/templates/InsertionSortAsc.txt'),
$result
);
}
public function testInsertionSortDesc()
{
$calculatedValue = static::$initiatedJavaClasses['InsertionSortTest']
->getInvoker()
->getStatic()
->getMethods()
->call('desc');
$result = Output::getHeapspace();
$this->assertEquals(
file_get_contents(__DIR__ . '/templates/InsertionSortDesc.txt'),
$result
);
}
public function testInsertionSortAscByParam()
{
$calculatedValue = static::$initiatedJavaClasses['InsertionSortTest']
->getInvoker()
->getStatic()
->getMethods()
->call(
'ascByParam',
[-14, 5, 111, 44, 2, 9999, 99, 123, 1, -10, 33, -50]
);
$result = Output::getHeapspace();
$this->assertEquals(
file_get_contents(__DIR__ . '/templates/InsertionSortAsc.txt'),
$result
);
}
public function testInsertionSortDescByParam()
{
$calculatedValue = static::$initiatedJavaClasses['InsertionSortTest']
->getInvoker()
->getStatic()
->getMethods()
->call(
'descByParam',
[-14, 5, 111, 44, 2, 9999, 99, 123, 1, -10, 33, -50]
);
$result = Output::getHeapspace();
$this->assertEquals(
file_get_contents(__DIR__ . '/templates/InsertionSortDesc.txt'),
$result
);
}
}