Skip to content

Commit

Permalink
Upgrade PHPUnit to 9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Jul 20, 2022
1 parent ad0ccd5 commit 5837c4b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@
},
"require-dev": {
"zetacomponents/unit-test": "*",
"phpunit/phpunit": "^7.5"
"phpunit/phpunit": "^9.0"
}
}
25 changes: 12 additions & 13 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="Zeta Components Url">
<directory suffix="_test.php">./tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory>./src</directory>
</whitelist>
</filter>
</phpunit>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./tests/bootstrap.php" colors="true" beStrictAboutTestsThatDoNotTestAnything="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory>./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Zeta Components Url">
<directory suffix="_test.php">./tests</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 5837c4b

Please sign in to comment.