-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
35 lines (35 loc) · 1.21 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
<phpunit bootstrap="vendor/autoload.php" colors="true" stopOnFailure="true" testdox="true" cacheResult="false">
<testsuites>
<testsuite name="core-units">
<file>test/unit/ValidatorTest.php</file>
<file>test/unit/ConfigTest.php</file>
<file>test/unit/HasherTest.php</file>
<file>test/unit/LoggerTest.php</file>
<file>test/unit/AnalyzerTest.php</file>
</testsuite>
<testsuite name="service-basic">
<file>test/e2e/ServiceBasicTest.php</file>
</testsuite>
<testsuite name="service-ssl">
<file>test/e2e/ServiceSslTest.php</file>
</testsuite>
<testsuite name="service-auth">
<file>test/e2e/ServiceAuthTest.php</file>
</testsuite>
<testsuite name="service-auth-ssl">
<file>test/e2e/ServiceAuthSslTest.php</file>
</testsuite>
<testsuite name="service-ipsum">
<file>test/e2e/ServiceIPSumTest.php</file>
</testsuite>
<testsuite name="redis-basic">
<file>test/e2e/RedisBasicTest.php</file>
</testsuite>
<testsuite name="redis-auth">
<file>test/e2e/RedisAuthTest.php</file>
</testsuite>
<testsuite name="redis-list">
<file>test/e2e/RedisListTest.php</file>
</testsuite>
</testsuites>
</phpunit>