forked from projek-xyz/ci-startapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
32 lines (32 loc) · 886 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
31
32
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit
bootstrap="bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="valse">
<php>
<const name="PHPUNIT_TEST" value="1" />
<server name="REMOTE_ADDR" value="0.0.0.0" />
<server name="CI_ENV" value="testing" />
</php>
<testsuites>
<testsuite name="CI-Skleleton TestSuite">
<directory suffix="Test.php">./</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">../app/</directory>
</whitelist>
<blacklist>
<directory suffix=".php">../vendor/</directory>
</blacklist>
</filter>
</phpunit>