Skip to content

Commit b6e67d5

Browse files
committed
Unit tests started
1 parent 629613d commit b6e67d5

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

phpunit.xml.dist

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<phpunit bootstrap="vendor/autoload.php">
2+
<testsuites>
3+
<testsuite name="Application">
4+
<directory>test</directory>
5+
</testsuite>
6+
</testsuites>
7+
8+
<logging>
9+
<log type="coverage-clover" target="clover.xml"/>
10+
</logging>
11+
</phpunit>

test/ArrayFunctionsTest.php

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
class ArrayFunctionsTest extends PHPUnit_Framework_TestCase {
4+
5+
public function testArrayFlatten() {
6+
$this->assertEquals(
7+
array( 1 => 1, 2 => 2, 3 => 3 ),
8+
array_flatten(array( 1, 2, 3, 3 ))
9+
);
10+
11+
$this->assertEquals(
12+
array( 1, 2, 3, 3 ),
13+
array_flatten(array( 1, 2, 3, 3 ), true)
14+
);
15+
16+
$this->assertEquals(
17+
array( 1 => 1, 2 => 2, 3 => 3, 4 => 4, 'fish fry' => 'fish fry' ),
18+
array_flatten(array(
19+
'bbq' => array(
20+
'soda' => array( 1, 2, 4, 'fish fry' ),
21+
3
22+
)
23+
))
24+
);
25+
26+
$this->assertEquals(
27+
array( 1, 2, 4, 'fish fry', 3 ),
28+
array_flatten(array(
29+
'bbq' => array(
30+
'soda' => array( 1, 2, 4, 'fish fry' ),
31+
3
32+
)
33+
), true)
34+
);
35+
36+
}
37+
38+
}
39+

0 commit comments

Comments
 (0)