Skip to content

Commit

Permalink
test: remove phpunit's TAP output configuration
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Totktonada committed Mar 26, 2020
1 parent 5626040 commit 999f47a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 36 deletions.
1 change: 0 additions & 1 deletion test/shared/phpunit.xml

This file was deleted.

17 changes: 17 additions & 0 deletions test/shared/phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<phpunit
colors ="true"
verbose="true"
>
<testsuites>
<testsuite name="Basic PHP Tests">
<file>test/AssertTest.php</file>
<file>test/CreateTest.php</file>
<file>test/DMLTest.php</file>
<file>test/MockTest.php</file>
<file>test/MsgPackTest.php</file>
<file>test/AssertTest.php</file>
<file>test/RandomTest.php</file>
</testsuite>
</testsuites>

</phpunit>
17 changes: 0 additions & 17 deletions test/shared/phpunit_bas.xml

This file was deleted.

18 changes: 0 additions & 18 deletions test/shared/phpunit_tap.xml

This file was deleted.

0 comments on commit 999f47a

Please sign in to comment.