Skip to content

Commit 78d91a3

Browse files
committed
Add initial tests
1 parent 745bca6 commit 78d91a3

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

phpunit.xml.dist

+1-10
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,12 @@
55
executionOrder="depends,defects"
66
beStrictAboutOutputDuringTests="true"
77
colors="true"
8-
cacheDirectory=".phpunit.cache"
98
failOnWarning="true"
109
failOnRisky="true"
11-
failOnDeprecation="true"
1210
failOnIncomplete="true"
13-
failOnNotice="true"
1411
failOnEmptyTestSuite="true"
1512
beStrictAboutChangesToGlobalState="true"
16-
testdox="true"
17-
beStrictAboutCoverageMetadata="true">
13+
testdox="true">
1814
<testsuites>
1915
<testsuite name="default">
2016
<directory>tests</directory>
@@ -26,9 +22,4 @@
2622
<text outputFile="php://stdout"/>
2723
</report>
2824
</coverage>
29-
<source>
30-
<include>
31-
<directory>src</directory>
32-
</include>
33-
</source>
3425
</phpunit>

tests/ArrayFindTest.php

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
namespace Polyfills\MbTrimPolyfill\Tests;
4+
5+
use PHPUnit\Framework\TestCase;
6+
7+
class ArrayFindTest extends TestCase {
8+
9+
public function testArrayFind() {
10+
self::assertSame(array_find(['apple', 'banana'], static function($value, $key) {
11+
return $value === 'banana';
12+
}), 'banana');
13+
}
14+
}

0 commit comments

Comments
 (0)