You've already forked wc-composable-product
25 lines
720 B
Plaintext
25 lines
720 B
Plaintext
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<phpunit
|
||
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
|
||
|
|
bootstrap="tests/bootstrap.php"
|
||
|
|
colors="true"
|
||
|
|
verbose="true"
|
||
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
||
|
|
beStrictAboutOutputDuringTests="true"
|
||
|
|
failOnRisky="false"
|
||
|
|
failOnWarning="true"
|
||
|
|
>
|
||
|
|
<testsuites>
|
||
|
|
<testsuite name="Unit">
|
||
|
|
<directory suffix="Test.php">tests/Unit</directory>
|
||
|
|
</testsuite>
|
||
|
|
</testsuites>
|
||
|
|
|
||
|
|
<coverage processUncoveredFiles="true">
|
||
|
|
<include>
|
||
|
|
<directory suffix=".php">includes</directory>
|
||
|
|
</include>
|
||
|
|
</coverage>
|
||
|
|
</phpunit>
|