-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
24 lines (22 loc) · 945 Bytes
/
phpunit.xml.dist
File metadata and controls
24 lines (22 loc) · 945 Bytes
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"?>
<!-- http://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false" failOnPhpunitDeprecation="true" displayDetailsOnPhpunitDeprecations="true">
<testsuites>
<testsuite name="Ilios MeSH Parser tests">
<directory>tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<!-- un-comment the following block before running code coverage tests -->
<!--
<coverage>
<report>
<html outputDirectory="html-coverage" lowUpperBound="50" highLowerBound="90"/>
</report>
</coverage>
-->
</phpunit>