-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
45 lines (40 loc) · 1.52 KB
/
phpunit.xml.dist
File metadata and controls
45 lines (40 loc) · 1.52 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<php>
<ini name="memory_limit" value="-1"/>
<ini name="error_reporting" value="-1"/>
<server name="KERNEL_DIR" value="./Tests/Fixtures/app"/>
<!--<server name="KERNEL_CLASS" value="Beyerz\AWSQueueBundle\Tests\Fixtures\app\AppKernel"/>-->
</php>
<logging>
<log type="coverage-clover" target="clover.xml"/>
</logging>
<testsuites>
<testsuite name="AWS Queue Bundle Unit Test Suite">
<directory>Tests/Unit</directory>
</testsuite>
<testsuite name="AWS Queue Bundle Functional Test Suite">
<directory>Tests/Functional</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./</directory>
<exclude>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>