-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
23 lines (23 loc) · 793 Bytes
/
phpunit.xml
File metadata and controls
23 lines (23 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<phpunit bootstrap="vendor/autoload.php" colors="true">
<php>
<ini name="display_errors" value="On" />
<ini name="display_startup_errors" value="On" />
<ini name="error_reporting" value="-1" />
</php>
<testsuites>
<testsuite name="Alistair Collins Hoswy Technical Assessment">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<coverage pathCoverage="false">
<include>
<directory suffix=".php">src/</directory>
</include>
<exclude>
<file>src/Domain/Basket/DataTransferObjects/ProductInterfaceCollection.php</file>
</exclude>
<report>
<html outputDirectory="build/coverage" />
</report>
</coverage>
</phpunit>