-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml.dist
executable file
·32 lines (30 loc) · 1.08 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/Bootstrap.php"
testdox="true"
colors="true"
processIsolation="false"
stopOnFailure="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
testSuiteLoaderFile="phpunit/src/Runner/StandardTestSuiteLoader.php">
<php>
<!--<server name="URL_ODATA_1C" value="https://YOUR_ODATA_HOST/YOUR_CONF/odata/standard.odata/" />-->
<!--<server name="LOGIN" value="YOUR_LOGIN" />-->
<!--<server name="PASSWORD" value="YOUR_PASSWORD" />-->
<!--<server name="ALLOW_UNSAFE_OPERATIONS" value="true" />-->
</php>
<testsuites>
<testsuite name="unit">
<directory>tests/unit</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/integration</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
</phpunit>