forked from BilalAslim/baum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
41 lines (41 loc) · 1.16 KB
/
phpunit.xml
File metadata and controls
41 lines (41 loc) · 1.16 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="vendor/autoload.php"
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnFailure="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
>
<coverage
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="false"
>
<report>
<html outputDirectory="cc-report" lowUpperBound="50" highLowerBound="90"/>
</report>
</coverage>
<testsuites>
<testsuite name="Baseline Eloquent Test">
<directory suffix="Test.php">tests/Baseline</directory>
</testsuite>
<testsuite name="Basic Baum Test">
<directory suffix="Test.php">tests/Basic</directory>
</testsuite>
<testsuite name="Baum Main Test">
<directory suffix="Test.php">tests/Main</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
<logging>
<testdoxText outputFile="build/coverage.txt"/>
</logging>
</phpunit>