mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-05 20:18:42 +00:00
add unit tests
This commit is contained in:
parent
05066c520e
commit
bbab09b0ea
|
|
@ -2932,7 +2932,7 @@ class DataMapperAbstract implements DataMapperInterface
|
||||||
*/
|
*/
|
||||||
public static function getNewest(int $limit = 1, Builder $query = null, int $relations = RelationType::ALL, int $depth = 3) : array
|
public static function getNewest(int $limit = 1, Builder $query = null, int $relations = RelationType::ALL, int $depth = 3) : array
|
||||||
{
|
{
|
||||||
$query ??= self::getQuery(null, [], $relations, $depth);
|
$query = self::getQuery($query, [], $relations, $depth);
|
||||||
$query->limit($limit);
|
$query->limit($limit);
|
||||||
|
|
||||||
if (!empty(static::$createdAt)) {
|
if (!empty(static::$createdAt)) {
|
||||||
|
|
|
||||||
|
|
@ -62,12 +62,11 @@ final class HttpHeader extends HeaderAbstract
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$key = \strtolower($key);
|
||||||
if (self::isSecurityHeader($key) && isset($this->header[$key])) {
|
if (self::isSecurityHeader($key) && isset($this->header[$key])) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$key = \strtolower($key);
|
|
||||||
|
|
||||||
if (!$overwrite && isset($this->header[$key])) {
|
if (!$overwrite && isset($this->header[$key])) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="Bootstrap.php" colors="true" stopOnError="true" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" beStrictAboutTestsThatDoNotTestAnything="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="Bootstrap.php" colors="true" columns="120" stopOnError="true" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" beStrictAboutTestsThatDoNotTestAnything="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
||||||
<coverage includeUncoveredFiles="true" processUncoveredFiles="false">
|
<coverage includeUncoveredFiles="true" processUncoveredFiles="false">
|
||||||
<include>
|
<include>
|
||||||
<directory suffix=".php">.*</directory>
|
<directory suffix=".php">.*</directory>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user