-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml.dist
28 lines (28 loc) · 1.18 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
23
24
25
26
27
28
<?xml version="1.0" ?>
<phpunit bootstrap="./PHPUnit/bootstrap.php"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<php>
<ini name="display_errors" value="On"/>
<ini name="error_reporting" value="E_ALL"/>
<env name="TESTS_SCHNOOP_DBADAPTER_MYSQL_ENABLED" value="true"/>
<env name="TESTS_SCHNOOP_DBADAPTER_MYSQL_HOST" value="172.19.0.2"/>
<env name="TESTS_SCHNOOP_DBADAPTER_MYSQL_USERNAME" value="root"/>
<env name="TESTS_SCHNOOP_DBADAPTER_MYSQL_PASSWORD" value=""/>
<env name="TESTS_SCHNOOP_DBADAPTER_MYSQL_PORT" value="3306"/>
<env name="TESTS_SCHNOOP_DBADAPTER_MYSQL_DATABASE" value="schnoop_testing"/>
</php>
<testsuites>
<testsuite name="unit_tests">
<directory>./tests/Schnoop/</directory>
</testsuite>
<testsuite name="phpunit_ext_tests">
<directory>./PHPUnit/</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src/</directory>
</include>
</coverage>
</phpunit>