-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
40 lines (36 loc) · 1.13 KB
/
phpunit.xml.dist
File metadata and controls
40 lines (36 loc) · 1.13 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<php>
<!-- disable E_USER_DEPRECATED -->
<ini name="error_reporting" value="16383"/>
<server name="APP_ENV" value="test" force="true" />
<server name="KERNEL_DIR" value="./tests/Fixtures" />
<server name="KERNEL_CLASS" value="\Aimeos\ShopBundle\Tests\Fixtures\AppKernel" />
</php>
<testsuites>
<testsuite name="command">
<file>./tests/Command/SetupCommandTest.php</file>
<file>./tests/Command/ClearCommandTest.php</file>
<file>./tests/Command/JobsCommandTest.php</file>
<file>./tests/Command/AccountCommandTest.php</file>
</testsuite>
<testsuite name="entity">
<directory>./tests/Entity</directory>
</testsuite>
<testsuite name="controller">
<directory>./tests/Controller</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</phpunit>