Skip to content

Commit 6842407

Browse files
committed
Improve phpunit.xml.dist
1 parent cae2597 commit 6842407

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

phpunit.xml.dist

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.3/phpunit.xsd"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
55
bootstrap="tests/autoload.php"
6-
backupGlobals="false"
76
cacheResult="false"
87
colors="true"
98
>
@@ -12,14 +11,14 @@
1211
</php>
1312

1413
<testsuites>
15-
<testsuite name="unit">
16-
<directory>tests</directory>
14+
<testsuite name="functional">
15+
<directory>tests/Functional</directory>
1716
</testsuite>
1817
</testsuites>
1918

2019
<source>
2120
<include>
22-
<directory suffix=".php">src</directory>
21+
<directory>src</directory>
2322
</include>
2423
</source>
2524

0 commit comments

Comments
 (0)