Files
scribe/phpunit.xml
2021-05-24 15:49:52 +01:00

50 lines
1.8 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
cacheResult="true"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
<exclude>
<file>src/ScribeServiceProvider.php</file>
<directory>resources/views/</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Full Test">
<file>tests/GenerateDocumentationTest.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="Unit Tests 1">
<file>tests/Unit/ExtractorTest.php</file>
<file>tests/Unit/ExtractorPluginSystemTest.php</file>
</testsuite>
<testsuite name="Unit Tests 2">
<file>tests/Unit/AnnotationParserTest.php</file>
</testsuite>
<testsuite name="Unit Tests 3">
<file>tests/Unit/OpenAPISpecWriterTest.php</file>
<file>tests/Unit/PostmanCollectionWriterTest.php</file>
</testsuite>
<testsuite name="Unit Tests 4">
<file>tests/Unit/ValidationRuleParsingTest.php</file>
</testsuite>
</testsuites>
</phpunit>