-
Notifications
You must be signed in to change notification settings - Fork 130
/
phpunit.xml
40 lines (40 loc) · 1.34 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="agent">
<file>./tests/AgentTest.php</file>
</testsuite>
<testsuite name="sms protected method">
<file>./tests/ProtectedTest.php</file>
</testsuite>
<testsuite name="config">
<file>./tests/ConfigTest.php</file>
</testsuite>
<testsuite name="send sms">
<file>./tests/SmsTest.php</file>
</testsuite>
<testsuite name="serialize sms">
<file>./tests/SerializeTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<file>./src/phpsms/agents/Agent.php</file>
<file>./src/phpsms/agents/LogAgent.php</file>
<file>./src/phpsms/Sms.php</file>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
</logging>
</phpunit>