-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
44 lines (38 loc) · 1.2 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
43
44
<phpunit bootstrap="./test/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="true"
stopOnFailure="false"
syntaxCheck="true">
<testsuites>
<testsuite name="PDS testing Suite - Hashing Functions">
<directory>./test/src/Hash</directory>
</testsuite>
<testsuite name="PDS testing Suite - HyperLogLog Cardinality Estimator">
<directory>./test/src/HyperLogLog</directory>
</testsuite>
<testsuite name="PDS testing Suite - Exact Cardinality Estimator">
<directory>./test/src/Exact</directory>
</testsuite>
<testsuite name="PDS testing Suite - Storage Structures">
<directory>./test/src/Storage</directory>
</testsuite>
<testsuite name="PDS testing Suite - Bloom Filter">
<directory>./test/src/Bloom</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">../</directory>
</blacklist>
<whitelist>
<directory suffix=".php">../src/Hash</directory>
<directory suffix=".php">../src/Bloom</directory>
<directory suffix=".php">../src/HyperLogLog</directory>
<exclude>
<file>./bootstrap.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>