Massive refactor of logchecker

This commit is contained in:
itismadness
2020-04-10 02:13:38 +09:00
parent 37d48fbe95
commit f522356aae
48 changed files with 21589 additions and 4368 deletions

19
phpunit.xml Normal file
View File

@@ -0,0 +1,19 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
colors="true"
bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="unit">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude></exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="report" />
</logging>
</phpunit>