forked from diablomedia/zf1-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
22 lines (22 loc) · 1.1 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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" beStrictAboutTestsThatDoNotTestAnything="true" backupGlobals="true" stderr="true" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<php>
<const name="TESTS_ZEND_DB_ADAPTER_PDO_MYSQL_ENABLED" value="false"/>
<const name="TESTS_ZEND_DB_ADAPTER_MYSQLI_ENABLED" value="false"/>
<const name="TESTS_ZEND_DB_ADAPTER_MYSQL_HOSTNAME" value="127.0.0.1"/>
<const name="TESTS_ZEND_DB_ADAPTER_MYSQL_USERNAME" value=""/>
<const name="TESTS_ZEND_DB_ADAPTER_MYSQL_PASSWORD" value=""/>
<const name="TESTS_ZEND_DB_ADAPTER_MYSQL_DATABASE" value="test"/>
<const name="TESTS_ZEND_DB_ADAPTER_MYSQL_PORT" value="3306"/>
</php>
<testsuites>
<testsuite name="default">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>