Tests: Setup PHPUnit and PHPUnit Watcher.

This commit is contained in:
Ian Dunn 2019-10-23 14:25:32 -07:00
parent 65bd3ad5af
commit eec9f5cb61
No known key found for this signature in database
GPG key ID: 99B971B50343CBCB
6 changed files with 2496 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Five for the Future plugin">
<directory prefix="test-" suffix=".php">
./tests/
</directory>
</testsuite>
</testsuites>
</phpunit>