Migrate phpunit configuration
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
<phpunit bootstrap="bootstrap.php" colors="true" convertDeprecationsToExceptions="true">
|
||||
<testsuites>
|
||||
<testsuite name="integration-database">
|
||||
<directory>./integration/database</directory>
|
||||
</testsuite>
|
||||
<testsuite name="integration-app">
|
||||
<directory>./integration/app</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<filter>
|
||||
<whitelist>
|
||||
<directory suffix=".php">./../lib</directory>
|
||||
</whitelist>
|
||||
</filter>
|
||||
<?xml version="1.0"?>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="bootstrap.php" colors="true" convertDeprecationsToExceptions="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
||||
<coverage>
|
||||
<include>
|
||||
<directory suffix=".php">./../lib</directory>
|
||||
</include>
|
||||
</coverage>
|
||||
<testsuites>
|
||||
<testsuite name="integration-database">
|
||||
<directory>./integration/database</directory>
|
||||
</testsuite>
|
||||
<testsuite name="integration-app">
|
||||
<directory>./integration/app</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
</phpunit>
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
<phpunit bootstrap="../../../tests/bootstrap.php" colors="true" convertDeprecationsToExceptions="true">
|
||||
<testsuites>
|
||||
<testsuite name="unit">
|
||||
<directory>./unit</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<filter>
|
||||
<whitelist>
|
||||
<directory suffix=".php">./../lib</directory>
|
||||
</whitelist>
|
||||
</filter>
|
||||
<?xml version="1.0"?>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../../tests/bootstrap.php" colors="true" convertDeprecationsToExceptions="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
||||
<coverage>
|
||||
<include>
|
||||
<directory suffix=".php">./../lib</directory>
|
||||
</include>
|
||||
</coverage>
|
||||
<testsuites>
|
||||
<testsuite name="unit">
|
||||
<directory>./unit</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
</phpunit>
|
||||
|
||||
Reference in New Issue
Block a user