< Summary

Class:ServiceProviders
Assembly:ServiceProviders
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/ServiceProviders/ServiceProviders.cs
Covered lines:6
Uncovered lines:0
Coverable lines:6
Total lines:14
Line coverage:100% (6 of 6)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
ServiceProviders()0%110100%
Dispose()0%110100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/ServiceProviders/ServiceProviders.cs

#LineLine coverage
 1using System;
 2
 3public class ServiceProviders : IServiceProviders
 4{
 6735    public ITheGraph theGraph { get ; } = new TheGraph();
 6716    public ICatalyst catalyst { get ; } = new Catalyst();
 6677    public IAnalytics analytics { get ; } = new Analytics();
 8
 9    public void Dispose()
 10    {
 68611        catalyst.Dispose();
 68612        analytics.Dispose();
 68613    }
 14}