Skip to content

Update dependency symfony/phpunit-bridge to v7 #1535

Update dependency symfony/phpunit-bridge to v7

Update dependency symfony/phpunit-bridge to v7 #1535

Triggered via pull request December 5, 2023 18:34
Status Success
Total duration 51s
Artifacts

continuous-integration.yml

on: pull_request
run  /  Generate test matrix
2s
run / Generate test matrix
Matrix: run / Code Coverage
Matrix: run / Coding Standards
Matrix: run / Lint composer.json
Matrix: run / Lint symfony container
Matrix: run / Mutation Tests
Matrix: run / Static Code Analysis
Matrix: run / Lint twig files
Matrix: run / Lint XLIFF files
Matrix: run / Lint YML files
Matrix: run / tests
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
run / Mutation Tests (8.3): src/Extension/UrlAutoConverterExtension.php#L23
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ { public function getFilters() : array { - return [new TwigFilter('converturls', [UrlAutoConverterRuntime::class, 'convertLinks'], ['is_safe' => ['html']])]; + return [new TwigFilter('converturls', [UrlAutoConverterRuntime::class, 'convertLinks'], ['is_safe' => []])]; } }
run / Mutation Tests (8.3): src/Extension/UrlAutoConverterExtension.php#L23
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ { public function getFilters() : array { - return [new TwigFilter('converturls', [UrlAutoConverterRuntime::class, 'convertLinks'], ['is_safe' => ['html']])]; + return [new TwigFilter('converturls', [UrlAutoConverterRuntime::class, 'convertLinks'], [])]; } }
run / Mutation Tests (8.3): src/Runtime/RouterRuntime.php#L34
Escaped Mutant for Mutator "UnwrapTrim": --- Original +++ New @@ @@ */ public function splitTag(string $text, string $tag) : array { - if ('' === trim($tag)) { + if ('' === $tag) { return [$text]; } $split = preg_split('/(?=<' . $tag . '([^>])*>)/', $text, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
run / Mutation Tests (8.3): src/Runtime/RouterRuntime.php#L40
Escaped Mutant for Mutator "FalseValue": --- Original +++ New @@ @@ return [$text]; } $split = preg_split('/(?=<' . $tag . '([^>])*>)/', $text, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE); - if (false !== $split) { + if (true !== $split) { return $split; } return [$text]; } }
run / Mutation Tests (8.3): src/Runtime/StringRuntime.php#L19
Escaped Mutant for Mutator "TrueValue": --- Original +++ New @@ @@ use Twig\Extension\RuntimeExtensionInterface; final class StringRuntime implements RuntimeExtensionInterface { - public function formatBytes(float $bytes, bool $si = true, int $fractionDigits = 0, ?string $locale = null) : string + public function formatBytes(float $bytes, bool $si = false, int $fractionDigits = 0, ?string $locale = null) : string { if (null === $locale) { $locale = Locale::getDefault();
run / Mutation Tests (8.3): src/Runtime/StringRuntime.php#L19
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ use Twig\Extension\RuntimeExtensionInterface; final class StringRuntime implements RuntimeExtensionInterface { - public function formatBytes(float $bytes, bool $si = true, int $fractionDigits = 0, ?string $locale = null) : string + public function formatBytes(float $bytes, bool $si = true, int $fractionDigits = -1, ?string $locale = null) : string { if (null === $locale) { $locale = Locale::getDefault();
run / Mutation Tests (8.3): src/Runtime/StringRuntime.php#L19
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ use Twig\Extension\RuntimeExtensionInterface; final class StringRuntime implements RuntimeExtensionInterface { - public function formatBytes(float $bytes, bool $si = true, int $fractionDigits = 0, ?string $locale = null) : string + public function formatBytes(float $bytes, bool $si = true, int $fractionDigits = 1, ?string $locale = null) : string { if (null === $locale) { $locale = Locale::getDefault();
run / Mutation Tests (8.3): src/Runtime/StringRuntime.php#L25
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if (null === $locale) { $locale = Locale::getDefault(); } - $unit = $si ? 1000 : 1024; + $unit = $si ? 999 : 1024; if ($bytes < $unit) { $prefix = ''; $number = $bytes;
run / Mutation Tests (8.3): src/Runtime/StringRuntime.php#L25
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if (null === $locale) { $locale = Locale::getDefault(); } - $unit = $si ? 1000 : 1024; + $unit = $si ? 1000 : 1023; if ($bytes < $unit) { $prefix = ''; $number = $bytes;
run / Mutation Tests (8.3): src/Runtime/StringRuntime.php#L38
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ $number = $bytes / $unit ** $exp; } $formatter = new NumberFormatter($locale, NumberFormatter::DECIMAL); - $formatter->setAttribute(NumberFormatter::MIN_FRACTION_DIGITS, $fractionDigits); + $formatter->setAttribute(NumberFormatter::FRACTION_DIGITS, $fractionDigits); return sprintf('%s %sB', $formatter->format($number, NumberFormatter::TYPE_DEFAULT), $prefix); }