-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renaming Static tests to Core, updating root phpunit xml config
- Loading branch information
Showing
6 changed files
with
68 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,60 @@ | ||
<?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="DSTU1-Static"> | ||
<file>./output/HL7/FHIR/DSTU1/PHPFHIRTests/PHPFHIRConstantsTest.php</file> | ||
<file>./output/HL7/FHIR/DSTU1/PHPFHIRTests/PHPFHIRTypeMapTest.php</file> | ||
</testsuite> | ||
<testsuite name="DSTU1-Unit"> | ||
<directory>./output/HL7/FHIR/DSTU1/PHPFHIRTests/Unit</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="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-Static"> | ||
<file>./output/HL7/FHIR/STU3/PHPFHIRTests/PHPFHIRConstantsTest.php</file> | ||
<file>./output/HL7/FHIR/STU3/PHPFHIRTests/PHPFHIRTypeMapTest.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-Static"> | ||
<file>./output/HL7/FHIR/R4/PHPFHIRTests/PHPFHIRConstantsTest.php</file> | ||
<file>./output/HL7/FHIR/R4/PHPFHIRTests/PHPFHIRTypeMapTest.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-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 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> | ||
</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> | ||
</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> | ||
</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> | ||
</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> | ||
</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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters