< Summary

Class:Akka.Configuration.UtilExtensions
Assembly:SeungYongShim.Akka.DependencyInjection
File(s):/home/runner/work/SeungYongShim.Akka/SeungYongShim.Akka/src/SeungYongShim.Akka.DependencyInjection/UtilExtensions.cs
Covered lines:0
Uncovered lines:1
Coverable lines:1
Total lines:8
Line coverage:0% (0 of 1)
Covered branches:0
Total branches:0
Tag:81_945672945

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
WithFallback(...)0%2100%

File(s)

/home/runner/work/SeungYongShim.Akka/SeungYongShim.Akka/src/SeungYongShim.Akka.DependencyInjection/UtilExtensions.cs

#LineLine coverage
 1namespace Akka.Configuration
 2{
 3    public static class UtilExtensions
 4    {
 5        public static Config WithFallback(this Config config, string hocon) =>
 06            config.WithFallback(ConfigurationFactory.ParseString(hocon));
 7    }
 8}