-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
39 lines (34 loc) · 1.32 KB
/
phpunit.xml.dist
File metadata and controls
39 lines (34 loc) · 1.32 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "true"
bootstrap = "vendor/autoload.php"
verbose = "true"
timeoutForLargeTests = "10"
>
<testsuites>
<testsuite name="All">
<directory>vendor/splash/phpcore/Tests/*</directory>
<directory>tests/Phpunit/*</directory>
<directory>phpunit/*</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile="phpunit-report.xml"/>
</logging>
<php>
<server name="KERNEL_CLASS" value="Splash\Bundle\Tests\Kernel" />
<env name="APP_ENV" value="test" force="true"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" />
<server name="SERVER_NAME" value="http://localhost:8000"/>
<const name="SPLASH_DEBUG" value="true" />
<server name="SPLASH_TRAVIS" value="true" />
</php>
</phpunit>