-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.bak
More file actions
14 lines (14 loc) · 627 Bytes
/
phpunit.xml.bak
File metadata and controls
14 lines (14 loc) · 627 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" beStrictAboutChangesToGlobalState="true" beStrictAboutOutputDuringTests="true" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" >
<coverage>
<include>
<directory suffix="Test.php">src/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Test Suite">
<directory suffix=".php">./tests/</directory>
<exclude>./tests/build_in_function.php</exclude>
</testsuite>
</testsuites>
</phpunit>