-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
35 lines (35 loc) · 1.34 KB
/
phpunit.xml
File metadata and controls
35 lines (35 loc) · 1.34 KB
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
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./tests/bootstrap.php" colors="true"
stopOnFailure="true" testdox="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="DefaultValueTest Tests">
<file>./tests/Cases/DefaultValueTest.php</file>
</testsuite>
<testsuite name="HookTest Tests">
<file>./tests/Cases/HookTest.php</file>
</testsuite>
<testsuite name="ValidationAttrTest Tests">
<file>./tests/Cases/ValidationAttrTest.php</file>
</testsuite>
<testsuite name="ValidationTest Tests">
<file>./tests/Cases/ValidationTest.php</file>
</testsuite>
<testsuite name="BaseArgTest Tests">
<file>./tests/Cases/BaseArgTest.php</file>
</testsuite>
<testsuite name="JsonTest Tests">
<file>./tests/Cases/JsonTest.php</file>
</testsuite>
<testsuite name="IgnoreAssignAttrTest Tests">
<file>./tests/Cases/IgnoreAssignAttrTest.php</file>
</testsuite>
</testsuites>
<coverage/>
<source>
<include>
<directory>./src</directory>
</include>
</source>
</phpunit>