Skip to content

Commit

Permalink
Separate tests into suites
Browse files Browse the repository at this point in the history
All suites used to be in one.
  • Loading branch information
XedinUnknown committed Oct 27, 2020
1 parent dfb144b commit 9a35426
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
convertWarningsToExceptions="false"
failOnWarning="false">
<testsuites>
<testsuite name="Test">
<directory suffix="Test.php">./tests/php/Unit/</directory>
<directory suffix="Test.php">./tests/php/Integration/</directory>
<directory suffix="Test.php">./tests/php/Functional/</directory>
<exclude>./tests/php/TestCase.php</exclude>
<testsuite name="Unit">
<directory suffix="Test.php">tests/php/Unit</directory>
</testsuite>
<testsuite name="Functional">
<directory suffix="Test.php">tests/php/Functional</directory>
</testsuite>
</testsuites>
<filter>
Expand Down

0 comments on commit 9a35426

Please sign in to comment.