forked from desarrolla2/Cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
39 lines (33 loc) · 1.17 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
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="./vendor/autoload.php"
convertWarningsToExceptions="true"
convertNoticesToExceptions="true"
convertErrorsToExceptions="true"
backupStaticAttributes="false"
processIsolation="false"
stopOnFailure="false"
backupGlobals="false"
colors="true"
>
<testsuites>
<testsuite name="Desarrolla2 Cache test suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
</whitelist>
</filter>
<php>
<!--ini name="mysqli.default_host" value="localhost" /-->
<!--ini name="mysqli.default_user" value="root" /-->
<!--ini name="mysqli.default_pw" value=""/-->
<const name="CACHE_TESTS_MYSQLI_DATABASE" value="cache_tests" />
<const name="CACHE_TESTS_MONGO_DSN" value="mongodb://localhost:27017" />
<const name="CACHE_TESTS_MONGO_DATABASE" value="cache_tests" />
<const name="CACHE_TESTS_MEMCACHED_SERVER" value="localhost:11211" />
<const name="CACHE_TESTS_PREDIS_DSN" value="tcp://localhost:6379" />
</php>
</phpunit>