< Summary

Class:Reporter
Assembly:AvatarReporterController
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Components/Avatar/AvatarReporterController/Implementation/Reporter.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:13
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Components/Avatar/AvatarReporterController/Implementation/Reporter.cs

#LineLine coverage
 1using DCL.Interface;
 2
 3internal class Reporter : IReporter
 4{
 5    void IReporter.ReportAvatarSceneChange(string avatarId, int sceneNumber)
 6    {
 07        WebInterface.ReportAvatarSceneChanged(avatarId, sceneNumber);
 08    }
 9    void IReporter.ReportAvatarRemoved(string avatarId)
 10    {
 011        WebInterface.ReportAvatarRemoved(avatarId);
 012    }
 13}