-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
30 lines (26 loc) · 917 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
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<php>
<server name="KERNEL_DIR" value="./tests/Fixtures/App" />
<server name="KERNEL_CLASS" value="\AppKernel" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
<ini name="display_startup_errors" value="1" />
</php>
<testsuites>
<testsuite name="Darkanakin41TableBundle test suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="junit" target="./build/junit.xml"/>
<log type="coverage-clover" target="./build/coverage.xml"/>
</logging>
<filter>
<whitelist>
<directory>./src</directory>
<exclude>
<directory>./src/Resources</directory>
</exclude>
</whitelist>
</filter>
</phpunit>