-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
37 lines (37 loc) · 1.15 KB
/
Copy pathphpunit.xml
File metadata and controls
37 lines (37 loc) · 1.15 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
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
executionOrder="random"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
>
<testsuites>
<testsuite name="FE CSV Import & Export Unit Tests">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="FE CSV Import & Export Integration Tests">
<directory>tests/Integration</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">includes</directory>
<file>fe-csv-import-export.php</file>
</include>
<exclude>
<directory>vendor</directory>
<directory>node_modules</directory>
</exclude>
</coverage>
<logging>
<junit outputFile="tests/results/junit.xml"/>
<teamcity outputFile="tests/results/teamcity.txt"/>
</logging>
</phpunit>