-
Notifications
You must be signed in to change notification settings - Fork 4
/
phpunit.xml
35 lines (33 loc) · 982 Bytes
/
phpunit.xml
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
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Carousel Slider Test Suite">
<file>./tests/unit/Carousel_SliderTest.php</file>
<directory suffix="Test.php">./tests/unit/includes/</directory>
</testsuite>
<testsuite name="Carousel Slider Modules">
<directory suffix="Test.php">./tests/unit/modules/</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="./tests/coverage/clover.xml"/>
<log type="coverage-html" target="./tests/coverage/html"/>
</logging>
<filter>
<whitelist>
<file>carousel-slider.php</file>
<directory suffix=".php">includes/</directory>
<directory suffix=".php">modules/</directory>
</whitelist>
</filter>
<php>
<env name="WP_PHPUNIT__TESTS_CONFIG" value="tests/wp-config.php"/>
</php>
</phpunit>