forked from knuckleswtf/scribe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
50 lines (50 loc) · 1.92 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?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>
<directory suffix=".php">camel/</directory>
</include>
<exclude>
<file>src/ScribeServiceProvider.php</file>
</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/ExtractedEndpointDataTest.php</file>
<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>