-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
47 lines (44 loc) · 1.23 KB
/
phpunit.xml.dist
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
44
45
46
47
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
convertDeprecationsToExceptions="true"
verbose="true"
testdox="true"
>
<testsuites>
<testsuite name="ep">
<directory>tests/PHPUnit/EasyPollTest.php</directory>
</testsuite>
<testsuite name="enqueue-class">
<directory>tests/PHPUnit/EnqueueTest.php</directory>
</testsuite>
<testsuite name="ep-post-class">
<directory>tests/PHPUnit/EasyPollPostTest.php</directory>
</testsuite>
<testsuite name="ep-feedback-class">
<directory>tests/PHPUnit/FeedbackTest.php</directory>
</testsuite>
<testsuite name="ep-poll-callback-class">
<directory>tests/PHPUnit/PostCallBackTest.php</directory>
</testsuite>
<testsuite name="ep-poll-handler-class">
<directory>tests/PHPUnit/PollHandlerTest.php</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory>tests/PHPUnit</directory>
</include>
<exclude>
<file>tests/PHPUnit/BaseTest.php</file>
</exclude>
<report>
<html outputDirectory="tests/CodeCoverage" lowUpperBound="50" highLowerBound="90"/>
</report>
</coverage>
</phpunit>