Skip to content

Commit b70471a

Browse files
committed
chore(test): improved PHPUnit configuration file params
1 parent c139718 commit b70471a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

phpunit.xml.dist

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5+
colors="true"
6+
bootstrap="vendor/autoload.php"
7+
stopOnError="true"
8+
>
9+
<php>
10+
<ini name="memory_limit" value="-1" />
11+
<ini name="error_reporting" value="-1" />
12+
<ini name="log_errors_max_len" value="0" />
13+
<ini name="zend.assertions" value="1" />
14+
<ini name="assert.exception" value="1" />
15+
<ini name="xdebug.show_exception_trace" value="0" />
16+
</php>
17+
18+
<testsuites>
19+
<testsuite name="Project Test Suite">
20+
<directory>tests</directory>
21+
</testsuite>
22+
</testsuites>
23+
</phpunit>

0 commit comments

Comments
 (0)