-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
43 lines (43 loc) · 1.56 KB
/
phpunit.xml
File metadata and controls
43 lines (43 loc) · 1.56 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
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
stderr="true"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./</directory>
</include>
<exclude>
<directory>index.php</directory>
<directory>default.php</directory>
<directory>./tests</directory>
<directory>./vendor</directory>
<directory>./_neoan</directory>
<directory>./asset</directory>
<directory>./_template</directory>
<directory suffix="Test.php">./</directory>
</exclude>
<report>
<clover outputFile="tests/clover.xml"/>
<html outputDirectory="tests/report"/>
</report>
</coverage>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">./component</directory>
<directory suffix="Test.php">./model</directory>
<directory suffix="Test.php">./provider</directory>
</testsuite>
</testsuites>
<php>
<const name="base" value="http://localhost"/>
</php>
<logging/>
</phpunit>