-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
20 lines (20 loc) · 851 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<phpunit bootstrap="vendor/autoload.php" colors="true" verbose="true">
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/coverage.xml" />
</logging>
<testsuites>
<testsuite name="Test V2">
<!--directory suffix="Test.php" phpVersion="5.5.0" phpVersionOperator="lt">/tests/v2</directory-->
<file phpVersion="5.5.0" phpVersionOperator="lt">./tests/v2/AwsSesWrapperTest.php</file>
</testsuite>
<testsuite name="Test V3">
<!--directory suffix="Test.php" phpVersion="5.5.0">/tests/v3</directory-->
<file phpVersion="5.5.0" phpVersionOperator=">=">./tests/v3/AwsSesWrapperTest.php</file>
</testsuite>
</testsuites>
</phpunit>