-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml
More file actions
26 lines (25 loc) · 875 Bytes
/
Copy pathphpunit.xml
File metadata and controls
26 lines (25 loc) · 875 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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.1/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<php>
<const name="strict_types" value="1" />
</php>
<testsuites>
<testsuite name="factoryMethods">
<file>tests/CcdaDocumentFactoryMethodFilepathTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist>
<file>src/Models/CcdaDocument.php</file>
<!--
## The code is not ready yet for the directory entry below. Once more functionality has been coded,
## we will have to include more of the models in our unit test code coverage report.
<directory suffix=".php">src/Models</directory>
-->
</whitelist>
</filter>
</phpunit>