-
Notifications
You must be signed in to change notification settings - Fork 4
/
phpunit.xml
24 lines (24 loc) · 981 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
<phpunit bootstrap="./source/Autoload.php">
<testsuites>
<testsuite name="essentials">
<file>tests/essentials/test-autoloader.php</file>
<file>tests/essentials/test-base-32.php</file>
</testsuite>
<testsuite name="qr-generators">
<file>tests/qr-generators/test-google-qr.php</file>
<file>tests/qr-generators/test-go-qr.php</file>
<file>tests/qr-generators/test-scanova.php</file>
</testsuite>
<testsuite name="elements">
<file>tests/elements/test-secret.php</file>
<file>tests/elements/test-account.php</file>
<file>tests/elements/test-account-manager.php</file>
<file>tests/elements/test-validator.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./source</directory>
</whitelist>
</filter>
</phpunit>