Update dependency matthiasnoback/symfony-dependency-injection-test to v5 #746
continuous-integration.yml
on: pull_request
run
/
Generate test matrix
3s
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
Annotations
3 warnings
run / Mutation Tests (8.2):
src/DependencyInjection/NucleosLastFmExtension.php#L40
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$bundles = $container->getParameter('kernel.bundles');
$loader = new Loader\PhpFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
if (isset($bundles['TwigBundle'])) {
- $loader->load('action.php');
+
}
$loader->load('services.php');
$this->configureApi($container, $config);
|
run / Mutation Tests (8.2):
src/DependencyInjection/NucleosLastFmExtension.php#L43
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
if (isset($bundles['TwigBundle'])) {
$loader->load('action.php');
}
- $loader->load('services.php');
+
$this->configureApi($container, $config);
$this->configureHttpClient($container, $config);
}
|
run / Mutation Tests (8.2):
src/Session/SessionManager.php#L83
Escaped Mutant for Mutator "InstanceOf_":
--- Original
+++ New
@@ @@
throw new RuntimeException('Could not retrieve request.');
}
$session = $request->hasSession() ? $request->getSession() : null;
- if (!$session instanceof Session) {
+ if (!true) {
throw new RuntimeException('Could not retrieve session from request.');
}
return $session;
}
}
|