| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit |
| 3 |
backupGlobals="false" |
| 4 |
strict="true" |
| 5 |
colors="false" |
| 6 |
verbose="true" |
| 7 |
stopOnFailure="true" |
| 8 |
stopOnIncomplete="false" |
| 9 |
bootstrap="bootstrap.php" |
| 10 |
convertErrorsToExceptions="true" |
| 11 |
convertNoticesToExceptions="true" |
| 12 |
convertWarningsToExceptions="true" |
| 13 |
mapTestClassNameToCoveredClassName="true"> |
| 14 |
|
| 15 |
<php> |
| 16 |
<ini name="error_reporting" value="-1"/> |
| 17 |
<ini name="memory_limit" value="1G"/> |
| 18 |
</php> |
| 19 |
|
| 20 |
<testsuite name="All Mobile Detect tests"> |
| 21 |
<directory suffix="Test.php">./</directory> |
| 22 |
</testsuite> |
| 23 |
|
| 24 |
<listeners> |
| 25 |
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener" /> |
| 26 |
</listeners> |
| 27 |
|
| 28 |
</phpunit> |
| 29 |
|