-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArrayMergeTest.php
More file actions
65 lines (54 loc) · 1.41 KB
/
ArrayMergeTest.php
File metadata and controls
65 lines (54 loc) · 1.41 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
<?php
declare(strict_types=1);
namespace Recruiter\Array\Tests;
use PHPUnit\Framework\TestCase;
use function Recruiter\Array\array_merge;
class ArrayMergeTest extends TestCase
{
public function testMerge(): void
{
$this->assertSame(
['a' => [1, 2, 3, 4]],
array_merge(['a' => [1, 2]], ['a' => [3, 4]]),
);
}
public function testMergeEmpty(): void
{
$this->assertSame([], array_merge([], []));
}
public function testMergeNumericWillConcatInOrder(): void
{
$this->assertSame(
[1, 2, 3, 4],
array_merge([1, 2], [3, 4]),
);
}
public function testMergeAssociativeWillOverride(): void
{
$this->assertSame(
['a' => 2],
array_merge(['a' => 1], ['a' => 2]),
);
}
public function testMergeDeplyRecursive(): void
{
$this->assertSame(
['a' => ['b' => null, 'c' => [1, 2, 3, 4]], 'b' => []],
array_merge(['a' => ['b' => 2, 'c' => [1, 2]]], ['a' => ['b' => null, 'c' => [3, 4]], 'b' => []]),
);
}
public function testMergeMultipleArrays(): void
{
$this->assertSame(
[1, 2, 3, 4],
array_merge([1], [2], [3], [4]),
);
}
public function testMergeNotArrays(): void
{
$this->assertSame(
[1, 2],
array_merge(1, 2),
);
}
}