We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
phpunit.xml
1 parent 2a8b8fc commit 2399647Copy full SHA for 2399647
1 file changed
phpunit.xml
@@ -1,22 +1,18 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
- xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.4/phpunit.xsd"
+ xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4
bootstrap="vendor/autoload.php"
5
colors="true"
6
>
7
<testsuites>
8
<testsuite name="Test Suite">
9
- <directory suffix="Test.php">./tests</directory>
+ <directory>./tests</directory>
10
</testsuite>
11
</testsuites>
12
<source>
13
<include>
14
- <directory suffix=".php">./src</directory>
+ <directory>./bin</directory>
15
+ <directory>./src</directory>
16
</include>
17
</source>
-
18
- <php>
19
- <!-- Width of the terminal -->
20
- <env name="COLUMNS" value="120" force="true"/>
21
- </php>
22
</phpunit>
0 commit comments