This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/tests/phpunit.xml

31 lines
1 KiB
XML
Raw Normal View History

2024-08-31 16:05:18 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.3/phpunit.xsd"
bootstrap="../tests/bootstrap.php"
cacheDirectory="../data/phpunit.cache"
colors="true"
executionOrder="depends,defects"
shortenArraysForExportThreshold="10"
requireCoverageMetadata="false"
beStrictAboutCoverageMetadata="false"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true">
2023-12-14 00:14:24 +00:00
<coverage/>
2020-10-24 17:55:07 +00:00
<testsuites>
<testsuite name="core">
2023-12-14 00:14:24 +00:00
<directory suffix="Test.php">../core/</directory>
2020-10-24 17:55:07 +00:00
</testsuite>
<testsuite name="ext">
<directory suffix="test.php">../ext/</directory>
</testsuite>
</testsuites>
2023-12-14 00:14:24 +00:00
<source>
<include>
<directory suffix=".php">../core</directory>
<directory suffix=".php">../ext</directory>
<directory suffix=".php">../themes/default</directory>
</include>
</source>
2015-08-09 11:14:28 +00:00
</phpunit>