-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
29 lines (29 loc) · 978 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
29 lines (29 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Native PHP Matrix
~
~ @copyright Copyright 2021, Lisachenko Alexander <lisachenko.it@gmail.com>
~
~ This source file is subject to the license that is bundled
~ with this source code in the file LICENSE.
~
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.5/phpunit.xsd"
colors="true"
bootstrap="./vendor/autoload.php"
failOnWarning="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerDeprecations="true">
<testsuites>
<testsuite name="Native PHP Matrix Test Suite">
<directory suffix=".phpt">./tests/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>./src/</directory>
</include>
</source>
</phpunit>