-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.mysql
28 lines (26 loc) · 1.1 KB
/
phpunit.xml.mysql
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="tests/bootstrap.php" backupGlobals="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./src/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="App Test Suite">
<directory>./tests/TestCase/</directory>
</testsuite>
</testsuites>
<php>
<const name="PHPUNIT" value="true"/>
<env name="ORIGIN_ENV" value="test"/>
<env name="DB_USERNAME" value="root"/>
<env name="DB_PASSWORD" value="root"/>
<env name="DB_HOST" value="mysql"/>
<env name="DB_DATABASE" value="chronos_test" />
<env name="DB_ENGINE" value="mysql"/>
<env name="DB_PORT" value="3306"/>
</php>
<listeners>
<listener class="Origin\TestSuite\OriginTestListener" file="./vendor/originphp/test-suite/OriginTestListener.php"/>
</listeners>
</phpunit>