-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
53 lines (53 loc) · 1.74 KB
/
phpunit.xml.dist
File metadata and controls
53 lines (53 loc) · 1.74 KB
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
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
cacheDirectory=".phpunit.cache"
>
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory>tests/Feature</directory>
</testsuite>
<testsuite name="Contract">
<directory>tests/Contract</directory>
</testsuite>
<testsuite name="Architecture">
<directory>tests/Architecture</directory>
</testsuite>
<testsuite name="Snapshots">
<directory>tests/Snapshots</directory>
</testsuite>
<testsuite name="Regression">
<directory>tests/Regression</directory>
</testsuite>
<testsuite name="Property">
<directory>tests/Property</directory>
</testsuite>
<testsuite name="Chaos">
<directory>tests/Chaos</directory>
</testsuite>
<testsuite name="Concurrency">
<directory>tests/Concurrency</directory>
</testsuite>
<testsuite name="Memory">
<directory>tests/Memory</directory>
</testsuite>
<testsuite name="Fuzz">
<directory>tests/Fuzz</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>src</directory>
</include>
<exclude>
<directory>src/Filament</directory>
<directory>src/Livewire</directory>
<directory>src/DevTools</directory>
</exclude>
</source>
</phpunit>