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

26 lines
731 B
XML
Raw Normal View History

2020-10-24 17:55:07 +00:00
<?xml version="1.0"?>
2023-12-31 17:42:04 +00:00
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="../tests/bootstrap.php"
colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
cacheResultFile="../data/phpunit.cache"
>
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>