forked from wp-plugins/all-in-one-event-calendar
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
36 lines (36 loc) · 1.02 KB
/
phpunit.xml
File metadata and controls
36 lines (36 loc) · 1.02 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
<?xml version="1.0"?>
<phpunit
bootstrap="tests/Utilities/bootstrap.php"
backupGlobals="false"
colors="true"
testdox="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="false"
beStrictAboutChangesToGlobalState="true"
convertErrorsToExceptions="true"
failOnWarning="true"
failOnRisky="true"
failOnSkipped="true"
failOnIncomplete="true"
>
<php>
<ini name="error_reporting" value="E_ALL"/>
<ini name="display_errors" value="1"/>
<ini name="display_startup_errors" value="1"/>
<ini name="memory_limit" value="-1"/>
<ini name="apc.enabled" value="1"/>
<ini name="apc.enable_cli" value="1"/>
<!-- <env name="SIMPLETEST_DB" value="sqlite://localhost//dev/shm/sitetest.db"/>-->
</php>
<testsuites>
<testsuite name="osec">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/Integration</directory>
</testsuite>
<testsuite name="unit">
<directory>tests/Unit</directory>
</testsuite>
</testsuites>
</phpunit>