forked from simplesamlphp/simplesamlphp
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
29 lines (29 loc) · 1.44 KB
/
Copy pathphpunit.xml
File metadata and controls
29 lines (29 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"backupGlobals="false"backupStaticAttributes="false"colors="true"convertErrorsToExceptions="true"convertNoticesToExceptions="true"convertWarningsToExceptions="true"processIsolation="false"stopOnFailure="false"bootstrap="./tests/bootstrap.php"xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverageprocessUncoveredFiles="true">
<include>
<directorysuffix=".php">./modules/admin/src</directory>
<directorysuffix=".php">./modules/core/src</directory>
<directorysuffix=".php">./modules/cron/src</directory>
<directorysuffix=".php">./modules/exampleauth/src</directory>
<directorysuffix=".php">./modules/multiauth/src</directory>
<directorysuffix=".php">./modules/saml/src</directory>
<directorysuffix=".php">./src</directory>
</include>
<exclude>
<directory>./tests</directory>
</exclude>
<report>
<cloveroutputFile="build/logs/clover.xml"/>
<htmloutputDirectory="build/coverage"lowUpperBound="35"highLowerBound="70"/>
<textoutputFile="php://stdout"showUncoveredFiles="true"/>
</report>
</coverage>
<testsuites>
<testsuitename="Unit tests">
<directory>./vendor/simplesamlphp/simplesamlphp-test-framework/src</directory>
<directory>./tests</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>