forked from widmogrod/zf2-assetic-module
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathphpunit.xml.dist
executable file
·21 lines (21 loc) · 937 Bytes
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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" colors="true" backupGlobals="false" stopOnFailure="false" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="src">
<directory suffix=".php">./tests/AsseticBundleTest/</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="display_errors" value="on"/>
<ini name="log_errors" value="off"/>
<const name="TEST_ASSETS_DIR" value="tests/assets"/>
<const name="TEST_CACHE_DIR" value="tests/cache"/>
<const name="TEST_PUBLIC_DIR" value="tests/public"/>
</php>
<source>
<include>
<directory suffix=".php">./src/</directory>
</include>
</source>
</phpunit>