-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.sqlite
23 lines (23 loc) · 1000 Bytes
/
phpunit.xml.sqlite
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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_HOST" value="127.0.0.1"/>
<env name="DB_DATABASE" value="chronos_test.db" />
<env name="DB_ENGINE" value="sqlite"/>
</php>
<listeners>
<listener class="Origin\TestSuite\OriginTestListener" file="./vendor/originphp/test-suite/OriginTestListener.php"/>
</listeners>
</phpunit>