-
Notifications
You must be signed in to change notification settings - Fork 2
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
6 changed files
with
576 additions
and
741 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,24 @@ | ||
<phpunit | ||
backupGlobals="true" | ||
backupStaticAttributes="false" | ||
cacheResultFile=".cache/.phpunit-functional.result.cache" | ||
colors="true" | ||
convertErrorsToExceptions="false" | ||
convertWarningsToExceptions="false" | ||
convertNoticesToExceptions="false" | ||
forceCoversAnnotation="false" | ||
processIsolation="false" | ||
stopOnError="false" | ||
stopOnFailure="false" | ||
stopOnIncomplete="false" | ||
stopOnSkipped="false" | ||
verbose="false"> | ||
|
||
<?xml version="1.0"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="true" colors="true" processIsolation="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false" requireCoverageMetadata="false"> | ||
<testsuites> | ||
<testsuite name="Functional"> | ||
<directory>../tests/Functional</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<coverage cacheDirectory=".cache/coverage-functional" | ||
includeUncoveredFiles="false" | ||
processUncoveredFiles="false" | ||
pathCoverage="false"> | ||
<include> | ||
<directory suffix=".php">../src</directory> | ||
</include> | ||
<coverage includeUncoveredFiles="false" pathCoverage="false"> | ||
<report> | ||
<clover outputFile="reports/coverage-functional.xml"/> | ||
<html outputDirectory="reports/coverage-functional" lowUpperBound="50" highLowerBound="90"/> | ||
<text outputFile="reports/coverage-functional.txt" showUncoveredFiles="false" showOnlySummary="true"/> | ||
</report> | ||
</coverage> | ||
|
||
<logging> | ||
<junit outputFile="reports/phpunit-functional-results.xml"/> | ||
<testdoxText outputFile="reports/phpunit-functional-results.txt"/> | ||
</logging> | ||
|
||
<source> | ||
<include> | ||
<directory suffix=".php">../src</directory> | ||
</include> | ||
</source> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<phpunit | ||
backupGlobals="true" | ||
backupStaticAttributes="false" | ||
cacheResultFile=".cache/.phpunit-functional.result.cache" | ||
colors="true" | ||
convertErrorsToExceptions="false" | ||
convertWarningsToExceptions="false" | ||
convertNoticesToExceptions="false" | ||
forceCoversAnnotation="false" | ||
processIsolation="false" | ||
stopOnError="false" | ||
stopOnFailure="false" | ||
stopOnIncomplete="false" | ||
stopOnSkipped="false" | ||
verbose="false"> | ||
|
||
<testsuites> | ||
<testsuite name="Functional"> | ||
<directory>../tests/Functional</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<coverage cacheDirectory=".cache/coverage-functional" | ||
includeUncoveredFiles="false" | ||
processUncoveredFiles="false" | ||
pathCoverage="false"> | ||
<include> | ||
<directory suffix=".php">../src</directory> | ||
</include> | ||
<report> | ||
<clover outputFile="reports/coverage-functional.xml"/> | ||
<html outputDirectory="reports/coverage-functional" lowUpperBound="50" highLowerBound="90"/> | ||
<text outputFile="reports/coverage-functional.txt" showUncoveredFiles="false" showOnlySummary="true"/> | ||
</report> | ||
</coverage> | ||
|
||
<logging> | ||
<junit outputFile="reports/phpunit-functional-results.xml"/> | ||
<testdoxText outputFile="reports/phpunit-functional-results.txt"/> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,24 @@ | ||
<phpunit | ||
backupGlobals="true" | ||
backupStaticAttributes="false" | ||
cacheResultFile=".cache/.phpunit-unit.result.cache" | ||
colors="true" | ||
convertErrorsToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
forceCoversAnnotation="false" | ||
processIsolation="false" | ||
stopOnError="false" | ||
stopOnFailure="false" | ||
stopOnIncomplete="false" | ||
stopOnSkipped="false" | ||
verbose="false"> | ||
|
||
<?xml version="1.0"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="true" colors="true" processIsolation="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false" requireCoverageMetadata="false"> | ||
<testsuites> | ||
<testsuite name="Unit"> | ||
<directory>../tests/Unit</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<coverage cacheDirectory=".cache/coverage-unit" | ||
includeUncoveredFiles="false" | ||
processUncoveredFiles="false" | ||
pathCoverage="false"> | ||
<include> | ||
<directory suffix=".php">../src</directory> | ||
</include> | ||
<coverage includeUncoveredFiles="false" pathCoverage="false"> | ||
<report> | ||
<clover outputFile="reports/coverage-unit.xml"/> | ||
<html outputDirectory="reports/coverage-unit" lowUpperBound="50" highLowerBound="90"/> | ||
<text outputFile="reports/coverage-unit.txt" showUncoveredFiles="false" showOnlySummary="true"/> | ||
</report> | ||
</coverage> | ||
|
||
<logging> | ||
<junit outputFile="reports/phpunit-unit-results.xml"/> | ||
<testdoxText outputFile="reports/phpunit-unit-results.txt"/> | ||
</logging> | ||
|
||
<source> | ||
<include> | ||
<directory suffix=".php">../src</directory> | ||
</include> | ||
</source> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<phpunit | ||
backupGlobals="true" | ||
backupStaticAttributes="false" | ||
cacheResultFile=".cache/.phpunit-unit.result.cache" | ||
colors="true" | ||
convertErrorsToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
forceCoversAnnotation="false" | ||
processIsolation="false" | ||
stopOnError="false" | ||
stopOnFailure="false" | ||
stopOnIncomplete="false" | ||
stopOnSkipped="false" | ||
verbose="false"> | ||
|
||
<testsuites> | ||
<testsuite name="Unit"> | ||
<directory>../tests/Unit</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<coverage cacheDirectory=".cache/coverage-unit" | ||
includeUncoveredFiles="false" | ||
processUncoveredFiles="false" | ||
pathCoverage="false"> | ||
<include> | ||
<directory suffix=".php">../src</directory> | ||
</include> | ||
<report> | ||
<clover outputFile="reports/coverage-unit.xml"/> | ||
<html outputDirectory="reports/coverage-unit" lowUpperBound="50" highLowerBound="90"/> | ||
<text outputFile="reports/coverage-unit.txt" showUncoveredFiles="false" showOnlySummary="true"/> | ||
</report> | ||
</coverage> | ||
|
||
<logging> | ||
<junit outputFile="reports/phpunit-unit-results.xml"/> | ||
<testdoxText outputFile="reports/phpunit-unit-results.txt"/> | ||
</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
Oops, something went wrong.