< Summary

Class:DCL.FatalErrorReporter.WebFatalErrorReporter
Assembly:FatalErrorReporter
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/FatalErrorReporter/WebFatalErrorReporter.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:13
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0

Metrics

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

File(s)

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

#LineLine coverage
 1using System;
 2using DCL.Interface;
 3
 4namespace DCL.FatalErrorReporter
 5{
 6    public class WebFatalErrorReporter : IFatalErrorReporter
 7    {
 8        public void Report(Exception exception)
 9        {
 010            WebInterface.ReportAvatarFatalError(exception.ToString());
 011        }
 12    }
 13}

Methods/Properties

Report(System.Exception)