forked from insideout10/wordlift-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
30 lines (30 loc) · 960 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
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="true"
stopOnError="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="WordLift Plugin">
<directory prefix="test-" suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>redlink</group>
</exclude>
</groups>
<php>
<const name="WP_DEBUG_LOG" value="true"/>
<const name="WP_DEBUG_DISPLAY" value="false"/>
<const name="WL_DEBUG" value="true"/>
<const name="WL_LOG_LEVEL" value="1"/>
<const name="WL_ALL_ENTITY_TYPES" value="true"/>
<const name="WL_ENABLE_TERM_LINKING" value="true"/>
</php>
</phpunit>