-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
30 lines (30 loc) · 999 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
30 lines (30 loc) · 999 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
failOnDeprecation="true"
failOnRisky="true"
failOnWarning="true"
>
<testsuites>
<testsuite name="Seam">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<!-- Generated from the API definition. Like the other Seam SDKs, the
tests cover SDK behavior rather than generated code, so measuring
coverage on it would only create pressure to test the generator. -->
<directory suffix=".php">src/Resources</directory>
<directory suffix=".php">src/Routes</directory>
</exclude>
</source>
</phpunit>