123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?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="Generator Tests">
- <file>tests/Unit/DingoGeneratorTest.php</file>
- <file>tests/Unit/LaravelGeneratorTest.php</file>
- <file>tests/Unit/GeneratorPluginSystemTest.php</file>
- </testsuite>
- <testsuite name="RouteMatcher Tests">
- <file>tests/Unit/RouteMatcherDingoTest.php</file>
- <file>tests/Unit/RouteMatcherTest.php</file>
- </testsuite>
- <testsuite name="Full Test">
- <file>tests/GenerateDocumentationTest.php</file>
- </testsuite>
- <testsuite name="Postman Collection Test">
- <file>tests/Unit/PostmanCollectionWriterTest.php</file>
- <file>tests/Tools/AnnotationParserTest.php</file>
- </testsuite>
- <testsuite name="Strategies">
- <directory>tests/Extracting/Strategies</directory>
- </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>
|