-
Notifications
You must be signed in to change notification settings - Fork 104
/
phpunit.xml
36 lines (35 loc) · 1.46 KB
/
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
35
36
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" backupStaticAttributes="false"
colors="true" convertErrorsToExceptions="true"
convertNoticesToExceptions="true" convertWarningsToExceptions="true"
processIsolation="false" stopOnFailure="false" syntaxCheck="false"
bootstrap="tests/bootstrap.php">
<!-- <directory>./tests/</directory> -->
<testsuites>
<testsuite name="Lampcms Test Suite">
<file>tests/StringTest.php</file>
<file>tests/Utf8StringTest.php</file>
<file>tests/LampcmsObjectTest.php</file>
<file>tests/LampcmsArrayTest.php</file>
<file>tests/ArrayDefaultsTest.php</file>
<file>tests/IniTest.php</file>
<file>tests/MongoTest.php</file>
<file>tests/MongoIncrementorTest.php</file>
<file>tests/MongoDocTest.php</file>
<file>tests/ResourceTest.php</file>
<file>tests/RequestTest.php</file>
<file>tests/RegistryTest.php</file>
<file>tests/UserTest.php</file>
<file>tests/QuestionTest.php</file>
<file>tests/AnswerTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./lib/Lampcms/</directory>
<exclude>
<directory>./tests/Fixtures</directory>
</exclude>
</whitelist>
</filter>
</phpunit>