| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 |
xsi:noNamespaceSchemaLocation="tests/vendor/phpunit/phpunit/phpunit.xsd" |
| 4 |
bootstrap="tests/bootstrap.php" |
| 5 |
colors="true" |
| 6 |
cacheResultFile="tests/.phpunit.result.cache" |
| 7 |
convertErrorsToExceptions="true" |
| 8 |
convertWarningsToExceptions="true" |
| 9 |
convertNoticesToExceptions="true" |
| 10 |
failOnWarning="true"> |
| 11 |
<testsuites> |
| 12 |
<testsuite name="BetterDocs AI Unit Tests"> |
| 13 |
<directory suffix="Test.php">tests/Unit</directory> |
| 14 |
</testsuite> |
| 15 |
</testsuites> |
| 16 |
</phpunit> |
| 17 |
|