-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml
42 lines (42 loc) · 1.61 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
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticProperties="false"
bootstrap="./tests/phpunit/phpunit.php"
cacheDirectory=".phpunit.cache"
colors="true"
processIsolation="false"
stopOnFailure="false"
beStrictAboutOutputDuringTests="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
>
<!-- see requirement in tests/phpunit/phpunit.php file. -->
<testsuites>
<testsuite name="dependent">
<directory suffix="Test.php">./tests/phpunit/DependentTests</directory>
</testsuite>
<testsuite name="extensions">
<directory suffix="Test.php">./tests/phpunit/ExtensionsTests</directory>
</testsuite>
<testsuite name="traits">
<directory suffix="Test.php">./tests/phpunit/TraitsTest</directory>
</testsuite>
<testsuite name="classes">
<directory suffix="Test.php">./tests/phpunit/Tests</directory>
</testsuite>
<testsuite name="imgprocess-gd">
<directory suffix="GdTest.php">./tests/phpunit/ImageProcessTests</directory>
</testsuite>
<testsuite name="imgprocess-imagick">
<directory suffix="ImagickTest.php">./tests/phpunit/ImageProcessTests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./Rundiz/Image/</directory>
</include>
</source>
<php>
<ini name="memory_limit" value="512M" />
</php>
</phpunit>