forked from knuckleswtf/scribe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
45 lines (45 loc) · 1.68 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
cacheResult="true"
colors="false"
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 1">
<file>tests/Unit/OpenAPISpecWriterTest.php</file>
<file>tests/Unit/AnnotationParserTest.php</file>
</testsuite>
<testsuite name="Other Unit Tests 2">
<file>tests/Unit/PostmanCollectionWriterTest.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>