Skip to content

Commit f984f98

Browse files
committed
Configures phpunit with two separate test suites.
1 parent e93fa6b commit f984f98

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

phpunit.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@
1111
syntaxCheck="false"
1212
>
1313
<testsuites>
14-
<testsuite name="Package Test Suite">
15-
<directory suffix=".php">tests</directory>
14+
<testsuite name="Unit">
15+
<directory suffix=".php">./tests/Unit</directory>
16+
</testsuite>
17+
18+
<testsuite name="Integration">
19+
<directory suffix=".php">./tests/Integration</directory>
1620
<exclude>./tests/Integration/TestCase.php</exclude>
1721
</testsuite>
1822
</testsuites>

0 commit comments

Comments
 (0)