blob: 51b431d80a5a71d23ba01000436f32be7a548dfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<phpunit
bootstrap="vendor/autoload.php"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="recipient">
<directory>tests/Recipient</directory>
</testsuite>
<testsuite name="sms">
<directory>tests/SMS</directory>
</testsuite>
<testsuite name="general">
<directory>tests/General</directory>
</testsuite>
<testsuite name="core">
<directory>tests/Core</directory>
</testsuite>
</testsuites>
</phpunit>
|