-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
phpunit.xml
65 lines (65 loc) · 2.93 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="./vendor/autoload.php" colors="true" stopOnFailure="false">
<php>
<ini name="memory_limit" value="2048M"/>
</php>
<testsuites>
<testsuite name="DSTU1-Core">
<file>./output/HL7/FHIR/DSTU1/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>./output/HL7/FHIR/DSTU1/PHPFHIRTests/PHPFHIRTypeMapTest.php</file>
<file>./output/HL7/FHIR/DSTU1/PHPFHIRTests/PHPFHIRConfigtest.php</file>
</testsuite>
<testsuite name="DSTU1-Unit">
<directory>./output/HL7/FHIR/DSTU1/PHPFHIRTests/Unit</directory>
</testsuite>
<testsuite name="DSTU2-Core">
<file>./output/HL7/FHIR/DSTU2/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>./output/HL7/FHIR/DSTU2/PHPFHIRTests/PHPFHIRTypeMapTest.php</file>
<file>./output/HL7/FHIR/DSTU2/PHPFHIRTests/PHPFHIRConfigtest.php</file>
</testsuite>
<testsuite name="DSTU2-Unit">
<directory>./output/HL7/FHIR/DSTU2/PHPFHIRTests/Unit</directory>
</testsuite>
<testsuite name="DSTU2-Integration">
<directory>./output/HL7/FHIR/DSTU2/PHPFHIRTests/Integration</directory>
</testsuite>
<testsuite name="STU3-Core">
<file>./output/HL7/FHIR/STU3/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>./output/HL7/FHIR/STU3/PHPFHIRTests/PHPFHIRTypeMapTest.php</file>
<file>./output/HL7/FHIR/STU3/PHPFHIRTests/PHPFHIRConfigtest.php</file>
</testsuite>
<testsuite name="STU3-Unit">
<directory>./output/HL7/FHIR/STU3/PHPFHIRTests/Unit</directory>
</testsuite>
<testsuite name="STU3-Integration">
<directory>./output/HL7/FHIR/STU3/PHPFHIRTests/Integration</directory>
</testsuite>
<testsuite name="R4-Core">
<file>./output/HL7/FHIR/R4/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>./output/HL7/FHIR/R4/PHPFHIRTests/PHPFHIRTypeMapTest.php</file>
<file>./output/HL7/FHIR/R4/PHPFHIRTests/PHPFHIRConfigtest.php</file>
</testsuite>
<testsuite name="R4-Unit">
<directory>./output/HL7/FHIR/R4/PHPFHIRTests/Unit</directory>
</testsuite>
<testsuite name="R4-Integration">
<directory>./output/HL7/FHIR/R4/PHPFHIRTests/Integration</directory>
</testsuite>
<testsuite name="R5-Core">
<file>./output/HL7/FHIR/R5/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>./output/HL7/FHIR/R5/PHPFHIRTests/PHPFHIRTypeMapTest.php</file>
<file>./output/HL7/FHIR/R5/PHPFHIRTests/PHPFHIRConfigtest.php</file>
</testsuite>
<testsuite name="R5-Unit">
<directory>./output/HL7/FHIR/R5/PHPFHIRTests/Unit</directory>
</testsuite>
<testsuite name="R5-Integration">
<directory>./output/HL7/FHIR/R5/PHPFHIRTests/Integration</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>