forked from sebastianbergmann/dbunit
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathphpunit-github.xml
More file actions
20 lines (20 loc) · 1.04 KB
/
phpunit-github.xml
File metadata and controls
20 lines (20 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" bootstrap="vendor/autoload.php" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" beStrictAboutCoverageMetadata="true">
<testsuite name="dbunit">
<directory suffix="Test.php">tests/Constraint</directory>
<directory suffix="Test.php">tests/DataSet</directory>
<directory suffix="Test.php">tests/Operation</directory>
<directory suffix="Test.php">tests/DB</directory>
</testsuite>
<php>
<const name="PHPUNIT_TESTSUITE" value="true"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_DATABASE_MYSQL_DSN" value="mysql:host=127.0.0.1;dbname=dbunit;port=3306"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_DATABASE_MYSQL_USERNAME" value="root"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_DATABASE_MYSQL_PASSWORD" value="root"/>
</php>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>