-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathphpunit.xml.dist
31 lines (31 loc) · 878 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="utf-8"?>
<phpunit
colors="true"
columns="max"
verbose="true"
cacheResult="false"
bootstrap="vendor/autoload.php"
>
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Functional">
<directory suffix="Test.php">tests/Functional</directory>
</testsuite>
<testsuite name="Functors">
<directory suffix="Test.php">tests/Functors</directory>
</testsuite>
<testsuite name="Immutable">
<directory suffix="Test.php">tests/Immutable</directory>
</testsuite>
<testsuite name="Pattern Matching">
<directory suffix="Test.php">tests/PatternMatching</directory>
</testsuite>
<testsuite name="Transient">
<directory suffix="Test.php">tests/Transient</directory>
</testsuite>
</testsuites>
</phpunit>