-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
15 lines (15 loc) · 750 Bytes
/
phpunit.xml
File metadata and controls
15 lines (15 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" beStrictAboutTestsThatDoNotTestAnything="false" colors="true" processIsolation="false" stopOnError="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="Kamu Test Suite">
<directory suffix=".php">./tests</directory>
</testsuite>
</testsuites>
<php>
<env name="DB_DRIV" value="mysql"/>
<env name="DB_PORT" value="3306"/>
<env name="DB_NAME" value="kamu"/>
<env name="DB_USER" value="root"/>
<env name="DB_PASS" value=""/>
</php>
</phpunit>