mirror of
https://github.com/retailcrm/Fetch.git
synced 2024-11-21 10:46:02 +03:00
faaff0711d
Added runTests.sh to wrap up a bunch of test starting functionality. Moved SetupEnvironment.sh out of Bootstrap.php and into the runTests.sh file. Added Coverall support for line coverage. Added php-cs-fixer for code styling testing.
28 lines
798 B
XML
28 lines
798 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Fetch Test Suite">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src/Fetch/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
|
|
</logging>
|
|
</phpunit>
|