forked from nbari/DALMP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
26 lines (26 loc) · 826 Bytes
/
phpunit.xml
File metadata and controls
26 lines (26 loc) · 826 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<phpunit colors="true" strict="false" verbose="true">
<php>
<var name="DSN" value="utf8://root@localhost:3306/dalmp" />
</php>
<testsuites>
<testsuite name="CacheDisk">
<file>tests/test_cache_disk.php</file>
</testsuite>
<testsuite name="CacheMemcache">
<file>tests/test_cache_memcache.php</file>
</testsuite>
<testsuite name="CacheRedis">
<file>tests/test_cache_redis.php</file>
</testsuite>
<testsuite name="SessionsRedis">
<file>tests/test_sessions_redis.php</file>
</testsuite>
<testsuite name="SessionsMemcache">
<file>tests/test_sessions_memcache.php</file>
</testsuite>
<testsuite name="SessionsMySQL">
<file>tests/test_sessions_mysql.php</file>
</testsuite>
</testsuites>
</phpunit>