-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathphpunit.xml.dist
24 lines (24 loc) · 1.06 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="tests/bootstrap.php" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<php>
<env name="KERNEL_CLASS" value="Playbloom\Kernel"/>
<env name="APP_ENV" value="test" force="true"/>
<env name="APP_DEBUG" value="1" force="true"/>
<env name="SHELL_VERBOSITY" value="-1"/>
<env name="COMPOSER_DISABLE_XDEBUG_WARN" value="1" force="true" />
<!-- ###+ symfony/framework-bundle ### -->
<env name="APP_ENV" value="test"/>
<env name="APP_SECRET" value="31d2023cffd1548dfa53540fb2f4c0d1"/>
<!-- ###- symfony/framework-bundle ### -->
</php>
<testsuites>
<testsuite name="Satisfy Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
</phpunit>