csvxml/phpunit.xml

14 lines
1.1 KiB
XML
Raw Normal View History

2020-11-25 16:32:57 +01:00
<?xml version="1.0"?>
2021-05-19 22:33:47 +02:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" backupStaticAttributes="false" beStrictAboutChangesToGlobalState="false" beStrictAboutOutputDuringTests="false" beStrictAboutResourceUsageDuringSmallTests="true" beStrictAboutTodoAnnotatedTests="true" beStrictAboutCoversAnnotation="false" cacheResult="false" colors="true" convertErrorsToExceptions="false" convertDeprecationsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" enforceTimeLimit="true" forceCoversAnnotation="false" processIsolation="true" stopOnError="true" stopOnFailure="true" stopOnIncomplete="true" stopOnSkipped="true" stopOnRisky="true" timeoutForSmallTests="1" timeoutForMediumTests="10" timeoutForLargeTests="60" verbose="true">
2020-11-25 16:32:57 +01:00
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">../exceptions/</directory>
</include>
</coverage>
2021-05-05 19:47:29 +02:00
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>