forked from dcarbone/php-fhir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-elements.xml
24 lines (24 loc) · 914 Bytes
/
test-elements.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/9.2/phpunit.xsd"
bootstrap="./vendor/autoload.php"
colors="true"
stopOnFailure="true"
>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<php>
<ini name="memory_limit" value="2048M"/>
</php>
<testsuites>
<testsuite name="Elements">
<directory>./output/HL7/FHIR/*/PHPFHIRTests/FHIRElement</directory>
<exclude>./output/HL7/FHIR/DSTU1/PHPFHIRTests/FHIRElement/FHIRBackboneElement</exclude>
<exclude>./output/HL7/FHIR/DSTU1/PHPFHIRTests/FHIRElement/FHIRBackboneElement/FHIRResource</exclude>
</testsuite>
</testsuites>
</phpunit>