mirror of
https://github.com/ambieco/scribe.git
synced 2026-04-06 10:30:56 +08:00
27 lines
882 B
XML
27 lines
882 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="true"
|
|
syntaxCheck="false">
|
|
<testsuites>
|
|
<testsuite name="Versionable Suite">
|
|
<directory>tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">src/Mpociot/</directory>
|
|
<exclude>
|
|
<file>src/Mpociot/ApiDoc/ApiDocGeneratorServiceProvider.php</file>
|
|
<file>src/resources/views/documentarian.blade.php</file>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|