Added phpunit config/bootstrap files for autostart all tests
This commit is contained in:
parent
c3b9e62adf
commit
76c9676be3
3 changed files with 69 additions and 1 deletions
24
phpunit.xml
Normal file
24
phpunit.xml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<phpunit backupGlobals="false"
|
||||
backupStaticAttributes="false"
|
||||
convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
processIsolation="false"
|
||||
stopOnFailure="false"
|
||||
syntaxCheck="false"
|
||||
bootstrap="./Tests/bootstrap.php"
|
||||
>
|
||||
<testsuites>
|
||||
<testsuite name="PHPCI Helper Test Suite">
|
||||
<directory suffix="Test.php">./Tests/PHPCI/Helper</directory>
|
||||
</testsuite>
|
||||
<testsuite name="PHPCI Logging Test Suite">
|
||||
<directory suffix="Test.php">./Tests/PHPCI/Logging</directory>
|
||||
</testsuite>
|
||||
<testsuite name="PHPCI Plugin Test Suite">
|
||||
<directory suffix="Test.php">./Tests/PHPCI/Plugin</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
</phpunit>
|
||||
Loading…
Add table
Add a link
Reference in a new issue