Remove phpunit.phar; fix test case file
This commit is contained in:
parent
eb57b93653
commit
91dc776e4d
4 changed files with 27 additions and 108052 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@
|
||||||
/fontawesome-free-6.5.2-web/
|
/fontawesome-free-6.5.2-web/
|
||||||
/_form/
|
/_form/
|
||||||
/vendor/
|
/vendor/
|
||||||
|
/phpunit.phar
|
||||||
|
|
108042
phpunit.phar
108042
phpunit.phar
File diff suppressed because one or more lines are too long
26
phpunit.xml
26
phpunit.xml
|
@ -1,10 +1,16 @@
|
||||||
<phpunit bootstrap="vendor/autoload.php">
|
<?xml version="1.0"?>
|
||||||
<filter>
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
bootstrap="vendor/autoload.php"
|
||||||
<directory suffix=".php">src</directory>
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
|
||||||
</whitelist>
|
cacheDirectory=".phpunit.cache">
|
||||||
</filter>
|
<coverage>
|
||||||
<logging>
|
<report>
|
||||||
<log type="coverage-clover" target="coverage.xml"/>
|
<clover outputFile="coverage.xml"/>
|
||||||
</logging>
|
</report>
|
||||||
</phpunit>
|
</coverage>
|
||||||
|
<testsuites>
|
||||||
|
<testsuite name="Default">
|
||||||
|
<directory suffix=".php">tests</directory>
|
||||||
|
</testsuite>
|
||||||
|
</testsuites>
|
||||||
|
</phpunit>
|
||||||
|
|
10
phpunit.xml.bak
Normal file
10
phpunit.xml.bak
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<phpunit bootstrap="vendor/autoload.php">
|
||||||
|
<filter>
|
||||||
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
||||||
|
<directory suffix=".php">src</directory>
|
||||||
|
</whitelist>
|
||||||
|
</filter>
|
||||||
|
<logging>
|
||||||
|
<log type="coverage-clover" target="coverage.xml"/>
|
||||||
|
</logging>
|
||||||
|
</phpunit>
|
Loading…
Add table
Add a link
Reference in a new issue