-
-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
23 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
<phpunit bootstrap="./tests/bootstrap.php" colors="true"> | ||
<testsuites> | ||
<testsuite name="OneLogin PHP-SAML Test Suite"> | ||
<directory>./tests/src</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist processUncoveredFilesFromWhitelist="true"> | ||
<directory>./src</directory> | ||
</whitelist> | ||
</filter> | ||
<logging> | ||
<log type="coverage-html" target="./tests/build/coverage" lowUpperBound="35" highLowerBound="70"/> | ||
<log type="coverage-xml" target="./tests/build/logfile.xml"/> | ||
<log type="coverage-clover" target="./tests/build/logs/clover.xml"/> | ||
<log type="coverage-php" target="./tests/build/logs/coverage.cov"/> | ||
</logging> | ||
<?xml version="1.0"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" verbose="true"> | ||
<coverage processUncoveredFiles="true"> | ||
<include> | ||
<directory>./src</directory> | ||
</include> | ||
<report> | ||
<clover outputFile="tests/build/logs/clover.xml"/> | ||
<html outputDirectory="tests/build/coverage" lowUpperBound="35" highLowerBound="70"/> | ||
<php outputFile="tests/build/logs/coverage.cov"/> | ||
<xml outputDirectory="tests/build/logfile.xml"/> | ||
</report> | ||
</coverage> | ||
<testsuites> | ||
<testsuite name="OneLogin PHP-SAML Test Suite"> | ||
<directory>./tests/src</directory> | ||
</testsuite> | ||
</testsuites> | ||
<logging/> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters