forked from dcarbone/php-fhir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
86 lines (83 loc) · 4.07 KB
/
phpunit.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/8.0/phpunit.xsd"
bootstrap="./vendor/autoload.php"
colors="true"
stopOnFailure="true"
>
<testsuites>
<testsuite name="DSTU1-Primitives">
<directory>./output/HL7/FHIR/DSTU1/PHPFHIRTests</directory>
<exclude>./output/HL7/FHIR/DSTU1/PHPFHIRTests/FHIRElement</exclude>
</testsuite>
<testsuite name="DSTU1-Elements">
<directory>./output/HL7/FHIR/DSTU1/PHPFHIRTests/FHIRElement</directory>
<exclude>./output/HL7/FHIR/DSTU1/PHPFHIRTests/FHIRElement/FHIRBackboneElement</exclude>
</testsuite>
<testsuite name="DSTU1-BackboneElements">
<directory>./output/HL7/FHIR/DSTU1/PHPFHIRTests/FHIRElement/FHIRBackboneElement</directory>
<exclude>./output/HL7/FHIR/DSTU1/PHPFHIRTests/FHIRElement/FHIRBackboneElement/FHIRResource</exclude>
</testsuite>
<testsuite name="DSTU1-Resources">
<directory>./output/HL7/FHIR/DSTU1/PHPFHIRTests/FHIRElement/FHIRBackboneElement/FHIRResource</directory>
</testsuite>
<testsuite name="DSTU1-Static">
<file>./output/HL7/FHIR/DSTU1/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>./output/HL7/FHIR/DSTU1/PHPFHIRTests/PHPFHIRTypeMapTest.php</file>
</testsuite>
<testsuite name="DSTU2-Primitives">
<directory>./output/HL7/FHIR/DSTU2/PHPFHIRTests</directory>
<exclude>./output/HL7/FHIR/DSTU2/PHPFHIRTests/FHIRElement</exclude>
<exclude>./output/HL7/FHIR/DSTU2/PHPFHIRTests/FHIRResource</exclude>
</testsuite>
<testsuite name="DSTU2-Elements">
<directory>./output/HL7/FHIR/DSTU2/PHPFHIRTests/FHIRElement</directory>
</testsuite>
<testsuite name="DSTU2-Resources">
<directory>./output/HL7/FHIR/DSTU2/PHPFHIRTests/FHIRResource</directory>
</testsuite>
<testsuite name="DSTU2-Static">
<file>./output/HL7/FHIR/DSTU2/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>./output/HL7/FHIR/DSTU2/PHPFHIRTests/PHPFHIRTypeMapTest.php</file>
</testsuite>
<testsuite name="STU3-Primitives">
<directory>./output/HL7/FHIR/STU3/PHPFHIRTests</directory>
<exclude>./output/HL7/FHIR/STU3/PHPFHIRTests/FHIRElement</exclude>
<exclude>./output/HL7/FHIR/STU3/PHPFHIRTests/FHIRResource</exclude>
</testsuite>
<testsuite name="STU3-Elements">
<directory>./output/HL7/FHIR/STU3/PHPFHIRTests/FHIRElement</directory>
</testsuite>
<testsuite name="STU3-Resources">
<directory>./output/HL7/FHIR/STU3/PHPFHIRTests/FHIRResource</directory>
</testsuite>
<testsuite name="STU3-Static">
<file>./output/HL7/FHIR/STU3/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>./output/HL7/FHIR/STU3/PHPFHIRTests/PHPFHIRTypeMapTest.php</file>
</testsuite>
<testsuite name="R4-Primitives">
<directory>./output/HL7/FHIR/R4/PHPFHIRTests</directory>
<exclude>./output/HL7/FHIR/R4/PHPFHIRTests/FHIRElement</exclude>
<exclude>./output/HL7/FHIR/R4/PHPFHIRTests/FHIRResource</exclude>
</testsuite>
<testsuite name="R4-Elements">
<directory>./output/HL7/FHIR/R4/PHPFHIRTests/FHIRElement</directory>
</testsuite>
<testsuite name="R4-Resources">
<directory>./output/HL7/FHIR/R4/PHPFHIRTests/FHIRResource</directory>
</testsuite>
<testsuite name="R4-Static">
<file>./output/HL7/FHIR/R4/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>./output/HL7/FHIR/R4/PHPFHIRTests/PHPFHIRTypeMapTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<php>
<env name="CACHE_DRIVER" value="array"/>
</php>
</phpunit>