-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathphpchunkit.xml.dist
34 lines (29 loc) · 951 Bytes
/
phpchunkit.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
<?xml version="1.0" encoding="UTF-8"?>
<phpchunkit
bootstrap="./tests/phpchunkit_bootstrap.php"
root-dir="./"
tests-dir="./tests"
phpunit-path="./vendor/bin/phpunit"
memory-limit="512M"
num-chunks="1"
>
<watch-directories>
<watch-directory>./src</watch-directory>
<watch-directory>./tests</watch-directory>
</watch-directories>
<database-names>
<database-name>testdb1</database-name>
<database-name>testdb2</database-name>
</database-names>
<events>
<listener event="sandbox.prepare">
<class>PHPChunkit\Test\Listener\SandboxPrepare</class>
</listener>
<listener event="sandbox.cleanup">
<class>PHPChunkit\Test\Listener\SandboxCleanup</class>
</listener>
<listener event="databases.create">
<class>PHPChunkit\Test\Listener\DatabasesCreate</class>
</listener>
</events>
</phpchunkit>