forked from danielstjules/Stringy
-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathphpunit.legacy.xml.dist
More file actions
21 lines (21 loc) · 674 Bytes
/
phpunit.legacy.xml.dist
File metadata and controls
21 lines (21 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<phpunit>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src/</directory>
<exclude>
<!-- Loaded conditionally by JsonSerializableReturnTypeTrait.php on PHP 8.1+;
including it unconditionally here would re-declare the trait on PHP < 8.1. -->
<file>./src/JsonSerializableReturnTypeTraitPhp81.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<testsuites>
<testsuite name="Stringy">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>