-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
58 lines (51 loc) · 2.12 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
57
58
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
cacheDirectory=".cache/phpunit">
<php>
<!-- Set error reporting to E_ALL. -->
<ini name="error_reporting" value="32767" />
<!-- Do not limit the amount of memory tests take to run. -->
<ini name="memory_limit" value="-1" />
<!--
@see \Sweetchuck\CacheBackend\ArangoDb\Test\Acceptance\ArangoDbCacheItemPoolTest::getConnectionOptions
-->
<!--<env name="ARANGODB_CACHE_OPTION_ENDPOINT" value="" />-->
<!--<env name="ARANGODB_CACHE_OPTION_AUTH_TYPE" value="" />-->
<!--<env name="ARANGODB_CACHE_OPTION_AUTHUSER" value="" />-->
<!--<env name="ARANGODB_CACHE_OPTION_AUTHPASSWD" value="" />-->
<!--<env name="ARANGODB_CACHE_OPTION_CONNECTION" value="" />-->
<!--<env name="ARANGODB_CACHE_OPTION_TIMEOUT" value="" />-->
<!--<env name="ARANGODB_CACHE_OPTION_RECONNECT" value="" />-->
<!--<env name="ARANGODB_CACHE_OPTION_UPDATE_POLICY" value="" />-->
<!--<env name="ARANGODB_CACHE_OPTION_CREATE" value="" />-->
<!--<env name="ARANGODB_CACHE_OPTION_DATABASE" value="" />-->
</php>
<source>
<include>
<directory>src/</directory>
</include>
</source>
<testsuites>
<testsuite name="Acceptance">
<directory>tests/src/Acceptance/</directory>
</testsuite>
<testsuite name="Unit">
<directory>tests/src/Unit/</directory>
</testsuite>
</testsuites>
<logging>
<testdoxHtml outputFile="reports/human/unit/junit.html" />
<junit outputFile="reports/machine/unit/junit.xml" />
</logging>
<coverage>
<report>
<clover outputFile="reports/machine/coverage/coverage.xml" />
<html outputDirectory="reports/human/coverage/html" />
<text outputFile="php://stdout" />
</report>
</coverage>
</phpunit>