Skip to content

Commit aaa53fc

Browse files
committed
test: remove phpunit's TAP output configuration
It is not supported by recent phpunit versions (see [1]) and is not actually used in our testing process. So it becomes just dead code and it worth to remove it. We'll bring newer phpunit versions in further commits to test the connector against more recent PHP versions (see [2]). [1]: sebastianbergmann/phpunit#2683 [2]: https://phpunit.de/supported-versions.html
1 parent 905a70f commit aaa53fc

File tree

3 files changed

+17
-36
lines changed

3 files changed

+17
-36
lines changed

test/shared/phpunit.xml

Lines changed: 0 additions & 1 deletion
This file was deleted.

test/shared/phpunit.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<phpunit
2+
colors ="true"
3+
verbose="true"
4+
>
5+
<testsuites>
6+
<testsuite name="Basic PHP Tests">
7+
<file>test/AssertTest.php</file>
8+
<file>test/CreateTest.php</file>
9+
<file>test/DMLTest.php</file>
10+
<file>test/MockTest.php</file>
11+
<file>test/MsgPackTest.php</file>
12+
<file>test/AssertTest.php</file>
13+
<file>test/RandomTest.php</file>
14+
</testsuite>
15+
</testsuites>
16+
17+
</phpunit>

test/shared/phpunit_bas.xml

Lines changed: 0 additions & 17 deletions
This file was deleted.

test/shared/phpunit_tap.xml

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)