Skip to content

Commit

Permalink
chore: testing configuration has been updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleon4 committed Jun 29, 2024
1 parent 447c6a1 commit 132bf22
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
stopOnFailure="true"
stopOnWarning="true"
bootstrap="vendor/autoload.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.1/phpunit.xsd"
backupStaticProperties="false"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
Expand All @@ -29,9 +29,20 @@
<ini name="memory_limit" value="2048M" />
</php>

<source>
<include>
<directory suffix=".php">src/LionHelpers</directory>
</include>

<exclude>
<directory suffix=".php">tests/Providers</directory>
</exclude>
</source>

<testsuites>
<testsuite name="All-Test">
<directory>tests/</directory>
<file>tests/ArrTest.php</file>
<file>tests/StrTest.php</file>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 132bf22

Please sign in to comment.