Skip to content

Commit

Permalink
Update phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
theseer committed Nov 19, 2023
1 parent 2558b41 commit e03cc38
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
6 changes: 3 additions & 3 deletions phive.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phive xmlns="https://phar.io/phive">
<phar name="phpunit" version="^8.0" installed="8.5.18" location="./tools/phpunit" copy="false"/>
<phar name="phpab" version="^1.23.0" installed="1.26.3" location="./tools/phpab" copy="false"/>
<phar name="php-cs-fixer" version="^2.16.4" installed="2.19.0" location="./tools/php-cs-fixer" copy="false"/>
<phar name="phpunit" version="^9.0" installed="9.6.13" location="./tools/phpunit" copy="false"/>
<phar name="phpab" version="^1.23.0" installed="1.29.0" location="./tools/phpab" copy="false"/>
<phar name="php-cs-fixer" version="^2.16.4" installed="2.19.3" location="./tools/php-cs-fixer" copy="false"/>
</phive>
30 changes: 13 additions & 17 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
bootstrap="src/autoload.php"
backupGlobals="false"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
verbose="true">
<testsuite name="Tokenizer">
<directory suffix="Test.php">tests</directory>
</testsuite>
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="src/autoload.php"
backupGlobals="false" beStrictAboutOutputDuringTests="true" beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true" verbose="true">

<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</include>
<report>
<html outputDirectory="build/coverage/html" lowUpperBound="60" highLowerBound="90" />
</report>
</coverage>

<logging>
<log type="coverage-html" target="build/coverage/html" lowUpperBound="60" highLowerBound="90"/>
</logging>
<testsuite name="Tokenizer">
<directory suffix="Test.php">tests</directory>
</testsuite>

</phpunit>

0 comments on commit e03cc38

Please sign in to comment.