trueskill/phpunit.xml

15 lines
611 B
XML
Raw Normal View History

2016-05-24 11:50:27 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2023-08-01 11:26:38 +00:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<coverage/>
2022-07-05 13:42:21 +00:00
<testsuites>
<testsuite name="PHPSkills Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
2023-08-01 11:26:38 +00:00
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
2016-05-24 11:50:27 +00:00
</phpunit>