-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml.dist
56 lines (50 loc) · 2.04 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="./vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
cacheResult="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
timeoutForSmallTests="10"
timeoutForMediumTests="30"
timeoutForLargeTests="120"
verbose="true">
<!-- Change some runtime PHP settings: -->
<php>
<env name="XDEBUG_MODE" value="coverage"/>
<ini name="xdebug.mode" value="coverage"/>
<ini name="default_charset" value="UTF-8"/>
<ini name="intl.default_locale" value="en"/>
<ini name="intl.error_level" value="0"/>
<ini name="log_errors" value="1"/>
<ini name="error_reporting" value="-1"/>
<ini name="report_memleaks" value="1"/>
<ini name="display_errors" value="1"/>
<ini name="display_startup_errors" value="1"/>
<ini name="memory_limit" value="-1"/>
</php>
<!-- Test suite name and location: -->
<testsuite name="CryptoManana - Test Suite">
<!-- Unit Tests -->
<directory suffix="Test.php">./tests/CryptoManana/Tests/TestSuite/</directory>
<!-- Integration Tests -->
<directory suffix="Test.php">./tests/CryptoManana/Tests/IntegrationSuite/</directory>
</testsuite>
<!-- Include directory paths for scanning: -->
<filter>
<whitelist>
<directory>./src/CryptoManana</directory>
</whitelist>
</filter>
<!-- Code coverage output formats and settings: -->
<logging>
<!--<log type="coverage-html" target="coverage/report" lowUpperBound="40" highLowerBound="80"/>-->
<log type="coverage-clover" target="coverage/clover.xml"/>
</logging>
</phpunit>