Bump phpmailer/phpmailer from 6.1.5 to 6.1.6 (#3567)
[openemr.git] / phpunit.xml
blob29918dcf9073276745e2d5d370a9f6862e27f6aa
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
4          backupGlobals="false"
5          bootstrap="tests/bootstrap.php"
6          backupStaticAttributes="false"
7          cacheTokens="false"
8          colors="false"
9          processIsolation="false"
10          stopOnError="false"
11          stopOnFailure="false"
12          stopOnIncomplete="false"
13          stopOnSkipped="false"
14          stopOnRisky="false"
15          verbose="false"
17     <php>
18         <ini name="error_reporting" value="-1" />
19         <server name="PANTHER_WEB_SERVER_DIR" value="interface"/>
20         <!-- ATTENTION use only on local machine you can not activate chrome visual mode on travis. -->
21         <!-- to disable browser's headless mode (will display the testing window, useful to debug) -->
22         <!--<server name="PANTHER_NO_HEADLESS" value="1"/>-->
23     </php>
24     <testsuites>
25         <testsuite name="openemr">
26             <directory>tests/Tests/Unit</directory>
27             <directory>tests/Tests/E2e</directory>
28             <directory>tests/Tests/Api</directory>
29             <directory>tests/Tests/Fixtures</directory>
30             <directory>tests/Tests/Services</directory>
31             <directory>tests/Tests/Validators</directory>
32             <directory>tests/Tests/RestControllers</directory>
33             <directory>tests/Tests/Common</directory>               
34         </testsuite>
35         <testsuite name="unit">
36             <directory>tests/Tests/Unit</directory>
37         </testsuite>
38         <testsuite name="e2e">
39             <directory>tests/Tests/E2e</directory>
40         </testsuite>
41         <testsuite name="api">
42             <directory>tests/Tests/Api</directory>
43         </testsuite>
44         <testsuite name="fixtures">
45             <directory>tests/Tests/Fixtures</directory>
46         </testsuite>
47         <testsuite name="services">
48             <directory>tests/Tests/Services</directory>
49         </testsuite>
50         <testsuite name="validators">
51             <directory>tests/Tests/Validators</directory>
52         </testsuite>
53         <testsuite name="controllers">
54             <directory>tests/Tests/RestControllers</directory>
55         </testsuite>
56         <testsuite name="common">
57             <directory>tests/Tests/Common</directory>
58         </testsuite>
59     </testsuites>
60 </phpunit>