fix: check for empty array before looking for offsite document (#7391)
[openemr.git] / phpunit.xml
blob48801c7b650ea4026e2e966d244684bd14fffa7b
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" backupGlobals="false" bootstrap="tests/bootstrap.php" colors="false" processIsolation="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" stopOnRisky="false" displayDetailsOnTestsThatTriggerDeprecations="true" displayDetailsOnTestsThatTriggerErrors="true" displayDetailsOnTestsThatTriggerWarnings="true" displayDetailsOnTestsThatTriggerNotices="true" testdox="false"> 
3   <coverage cacheDirectory=".phpunit.cache"> </coverage>
4   <php>
5     <ini name="error_reporting" value="-1"/>
6     <server name="PANTHER_WEB_SERVER_DIR" value="interface"/>
7     <!-- ATTENTION use only on local machine you can not activate chrome visual mode on travis. -->
8     <!-- to disable browser's headless mode (will display the testing window, useful to debug) -->
9     <!--<server name="PANTHER_NO_HEADLESS" value="1"/>-->
10   </php>
11   <testsuites>
12     <testsuite name="openemr">
13       <directory>tests/Tests/Unit</directory>
14       <directory>tests/Tests/E2e</directory>
15       <directory>tests/Tests/Api</directory>
16       <directory>tests/Tests/Fixtures</directory>
17       <directory>tests/Tests/Services</directory>
18       <directory>tests/Tests/Validators</directory>
19       <directory>tests/Tests/RestControllers</directory>
20       <directory>tests/Tests/Common</directory>
21     </testsuite>
22     <testsuite name="ECQM">
23       <directory>tests/Tests/ECQM</directory>
24     </testsuite>
25     <testsuite name="unit">
26       <directory>tests/Tests/Unit</directory>
27     </testsuite>
28     <testsuite name="e2e">
29       <directory>tests/Tests/E2e</directory>
30     </testsuite>
31     <testsuite name="api">
32       <directory>tests/Tests/Api</directory>
33     </testsuite>
34     <testsuite name="fixtures">
35       <directory>tests/Tests/Fixtures</directory>
36     </testsuite>
37     <testsuite name="services">
38       <directory>tests/Tests/Services</directory>
39     </testsuite>
40     <testsuite name="validators">
41       <directory>tests/Tests/Validators</directory>
42     </testsuite>
43     <testsuite name="controllers">
44       <directory>tests/Tests/RestControllers</directory>
45     </testsuite>
46     <testsuite name="common">
47       <directory>tests/Tests/Common</directory>
48     </testsuite>
49   </testsuites>
50 </phpunit>