Skip to content

Commit

Permalink
adding R5 phpunit config
Browse files Browse the repository at this point in the history
  • Loading branch information
dcarbone committed Apr 16, 2024
1 parent 71b9177 commit 31c477a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
11 changes: 11 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,16 @@
<testsuite name="R4-Integration">
<directory>./output/HL7/FHIR/R4/PHPFHIRTests/Integration</directory>
</testsuite>

<testsuite name="R5-Static">
<file>./output/HL7/FHIR/R5/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>./output/HL7/FHIR/R5/PHPFHIRTests/PHPFHIRTypeMapTest.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>
</phpunit>
25 changes: 25 additions & 0 deletions phpunit/R5.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="../vendor/autoload.php"
colors="true" stopOnFailure="true">
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">../src</directory>
</include>
</coverage>
<php>
<ini name="memory_limit" value="2048M"/>
</php>
<testsuites>
<testsuite name="R5-Static">
<file>../output/HL7/FHIR/R5/PHPFHIRTests/PHPFHIRConstantsTest.php</file>
<file>../output/HL7/FHIR/R5/PHPFHIRTests/PHPFHIRTypeMapTest.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>
</phpunit>

0 comments on commit 31c477a

Please sign in to comment.