fix tests
This commit is contained in:
parent
3fd5f2dc98
commit
36ee1a5957
36
phpunit.xml
Normal file
36
phpunit.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
backupGlobals="true"
|
||||||
|
bootstrap="../../../source/bootstrap.php"
|
||||||
|
colors="false"
|
||||||
|
backupStaticAttributes="false"
|
||||||
|
convertErrorsToExceptions="true"
|
||||||
|
convertNoticesToExceptions="false"
|
||||||
|
convertWarningsToExceptions="true"
|
||||||
|
forceCoversAnnotation="false"
|
||||||
|
processIsolation="false"
|
||||||
|
stopOnError="false"
|
||||||
|
stopOnFailure="false"
|
||||||
|
stopOnIncomplete="false"
|
||||||
|
stopOnSkipped="false"
|
||||||
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
||||||
|
verbose="false"
|
||||||
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
||||||
|
<testsuites>
|
||||||
|
<testsuite name="Unit">
|
||||||
|
<directory>tests/unit</directory>
|
||||||
|
</testsuite>
|
||||||
|
</testsuites>
|
||||||
|
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
|
||||||
|
<include>
|
||||||
|
<directory suffix=".php">Application</directory>
|
||||||
|
</include>
|
||||||
|
<exclude>
|
||||||
|
<file>../.php-cs-fixer.php</file>
|
||||||
|
<file>../IntelliSenseHelper.php</file>
|
||||||
|
</exclude>
|
||||||
|
</coverage>
|
||||||
|
<php>
|
||||||
|
<const name="OXID_PHP_UNIT" value="true"/>
|
||||||
|
</php>
|
||||||
|
</phpunit>
|
@ -1,27 +0,0 @@
|
|||||||
<phpunit backupGlobals="true"
|
|
||||||
backupStaticAttributes="false"
|
|
||||||
beStrictAboutTestsThatDoNotTestAnything="false"
|
|
||||||
cacheTokens="true"
|
|
||||||
colors="false"
|
|
||||||
convertErrorsToExceptions="true"
|
|
||||||
convertNoticesToExceptions="false"
|
|
||||||
convertWarningsToExceptions="true"
|
|
||||||
forceCoversAnnotation="false"
|
|
||||||
processIsolation="false"
|
|
||||||
stopOnError="false"
|
|
||||||
stopOnFailure="false"
|
|
||||||
stopOnIncomplete="false"
|
|
||||||
stopOnSkipped="false"
|
|
||||||
verbose="false">
|
|
||||||
<filter>
|
|
||||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
||||||
<directory suffix=".php">../Application</directory>
|
|
||||||
<directory suffix=".php">../Modules</directory>
|
|
||||||
<directory suffix=".php">../public</directory>
|
|
||||||
<directory suffix=".php">../Setup</directory>
|
|
||||||
</whitelist>
|
|
||||||
</filter>
|
|
||||||
<logging>
|
|
||||||
<log type="junit" target="reports/logfile.xml"/>
|
|
||||||
</logging>
|
|
||||||
</phpunit>
|
|
@ -51,7 +51,7 @@ class DebugExceptionTest extends d3ModCfgUnitTestCase
|
|||||||
);
|
);
|
||||||
|
|
||||||
$this->assertStringContainsString(
|
$this->assertStringContainsString(
|
||||||
'DEBUG',
|
'Debug',
|
||||||
$this->callMethod(
|
$this->callMethod(
|
||||||
$this->_oModel,
|
$this->_oModel,
|
||||||
'getMessage'
|
'getMessage'
|
||||||
|
@ -122,13 +122,10 @@ class CsvTest extends ExportRendererTest
|
|||||||
->getMock();
|
->getMock();
|
||||||
$configMock->expects($this->atLeastOnce())->method('getConfigParam')->willReturnCallback(
|
$configMock->expects($this->atLeastOnce())->method('getConfigParam')->willReturnCallback(
|
||||||
function ($argName) {
|
function ($argName) {
|
||||||
switch ($argName) {
|
return match ( $argName ) {
|
||||||
case 'sGiCsvFieldEncloser':
|
'sGiCsvFieldEncloser', 'sCSVSign' => null,
|
||||||
case 'sCSVSign':
|
default => Registry::getConfig()->getConfigParam( $argName ),
|
||||||
return false;
|
};
|
||||||
default:
|
|
||||||
return Registry::getConfig()->getConfigParam($argName);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user