Skip to content

Commit

Permalink
Merge pull request #13 from jop-software/10-migrate-phpunit-configura…
Browse files Browse the repository at this point in the history
…tion

task: automigrate phpunit configuration
  • Loading branch information
cngJo committed Dec 4, 2023
2 parents ce72c3d + e8d1951 commit 9c091fe
Showing 1 changed file with 15 additions and 20 deletions.
35 changes: 15 additions & 20 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
executionOrder="random">

<php>
<ini name="error_reporting" value="-1"/>
</php>

<testsuites>
<testsuite name="Doctrine Uuid Generators Testsuite">
<directory>tests/</directory>
</testsuite>
</testsuites>

<coverage>
<include>
<directory suffix=".php">./src/</directory>
</include>
</coverage>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" executionOrder="random">
<php>
<ini name="error_reporting" value="-1"/>
</php>
<testsuites>
<testsuite name="Doctrine Uuid Generators Testsuite">
<directory>tests/</directory>
</testsuite>
</testsuites>
<coverage />
<source>
<include>
<directory suffix=".php">./src/</directory>
</include>
</source>
</phpunit>

0 comments on commit 9c091fe

Please sign in to comment.