Files
scribe/phpunit.xml
2018-10-11 15:22:04 +01:00

26 lines
827 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Versionable Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<exclude>
<file>src/ApiDocGeneratorServiceProvider.php</file>
<file>resources/views/documentarian.blade.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>