-
Notifications
You must be signed in to change notification settings - Fork 5
/
phpunit.xml.dist
43 lines (41 loc) · 1.54 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="true"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="app/autoload.php"
>
<testsuites>
<testsuite name="ResourceBundle Test Suite">
<directory>./src/Ayamel/ResourceBundle/</directory>
</testsuite>
<testsuite name="ApiBundle Test Suite">
<directory>./src/Ayamel/ApiBundle/</directory>
</testsuite>
<testsuite name="FilesystemBundle Test Suite">
<directory>./src/Ayamel/FilesystemBundle/</directory>
</testsuite>
<testsuite name="MediaInfoBundle Test Suite">
<directory>./src/Ayamel/MediaInfoBundle/</directory>
</testsuite>
<testsuite name="YouTubeBundle Test Suite">
<directory>./src/Ayamel/YouTubeBundle/</directory>
</testsuite>
<testsuite name="TranscodingBundle Test Suite">
<directory>./src/Ayamel/TranscodingBundle/</directory>
</testsuite>
<testsuite name="SearchBundle Test Suite">
<directory>./src/Ayamel/SearchBundle/</directory>
</testsuite>
</testsuites>
<php>
<server name="KERNEL_DIR" value="app/" />
<ini name="display_errors" value="on" />
<ini name="memory_limit" value="512M"/>
</php>
</phpunit>