-
Notifications
You must be signed in to change notification settings - Fork 18
/
phpunit.xml.dist
52 lines (52 loc) · 2.09 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
processIsolation="false"
stopOnError="true"
stopOnFailure="true"
verbose="true"
>
<testsuites>
<testsuite name="NEM PHP API Wrapper Test Suite">
<directory suffix="Test.php">./tests/API</directory>
</testsuite>
<testsuite name="NEM PHP SDK Abstraction Layer Test Suite">
<directory suffix="Test.php">./tests/SDK/Abstraction</directory>
</testsuite>
<testsuite name="NEM PHP SDK Buffering Test Suite">
<directory suffix="Test.php">./tests/SDK/Buffer</directory>
</testsuite>
<testsuite name="NEM PHP SDK NIS Core Layer Test Suite">
<directory suffix="Test.php">./tests/SDK/Core</directory>
</testsuite>
<testsuite name="NEM PHP SDK NIS Compliance DTO Test Suite">
<directory suffix="Test.php">./tests/SDK/NIS/DTO</directory>
</testsuite>
<testsuite name="NEM PHP SDK NIS Compliance Serializer Test Suite">
<directory suffix="Test.php">./tests/SDK/NIS/Serialize</directory>
</testsuite>
<testsuite name="NEM PHP SDK NIS Compliance Infrastructure Test Suite">
<directory suffix="Test.php">./tests/SDK/NIS/Service</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
</php>
</phpunit>