mirror of
https://github.com/ambieco/scribe.git
synced 2026-03-29 22:03:20 +08:00
43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
cacheResult="true"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false">
|
|
<testsuites>
|
|
<testsuite name="Full Test">
|
|
<file>tests/GenerateDocumentationTest.php</file>
|
|
</testsuite>
|
|
<testsuite name="Generator Tests">
|
|
<file>tests/Unit/DingoGeneratorTest.php</file>
|
|
<file>tests/Unit/LaravelGeneratorTest.php</file>
|
|
<file>tests/Unit/GeneratorPluginSystemTest.php</file>
|
|
</testsuite>
|
|
<testsuite name="Strategies">
|
|
<directory>tests/Strategies</directory>
|
|
</testsuite>
|
|
<testsuite name="RouteMatcher Tests">
|
|
<file>tests/Unit/RouteMatcherDingoTest.php</file>
|
|
<file>tests/Unit/RouteMatcherTest.php</file>
|
|
</testsuite>
|
|
<testsuite name="Other Unit Tests">
|
|
<file>tests/Unit/PostmanCollectionWriterTest.php</file>
|
|
<file>tests/Unit/AnnotationParserTest.php</file>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">src/</directory>
|
|
<exclude>
|
|
<file>src/ScribeServiceProvider.php</file>
|
|
<file>resources/views/pastel.blade.php</file>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|