forked from pluginsGLPI/formcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
35 lines (35 loc) · 1.12 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.2/phpunit.xsd"
bootstrap="tests/bootstrap.php"
processIsolation="false"
backupGlobals="false"
colors="true"
stderr="true"
>
<logging>
<log type="junit" target="./tests/logs/junit_install.xml" logIncompleteSkipped="true" />
</logging>
<!-- exclude relatively to ${basedir} -->
<filter>
<whitelist>
<directory suffix=".php">./inc</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="Install">
<file>./tests/0000_Install/PluginInstallTest.php</file>
<file>./tests/0000_Install/SaveInstallTest.php</file>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/0005_Unit/</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">./tests/0010_Integration/</directory>
</testsuite>
<testsuite name="Uninstall">
<directory suffix="Test.php">./tests/9000_Uninstall/</directory>
</testsuite>
</testsuites>
</phpunit>