< Summary

Class:DCLPlugins.SentryPlugin.SentryPlugin
Assembly:DCL.Plugins.SentryPlugin
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLPlugins/SentryPlugin/SentryPlugin.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:21
Line coverage:0% (0 of 6)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
SentryPlugin()0%2100%
Dispose()0%6200%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLPlugins/SentryPlugin/SentryPlugin.cs

#LineLine coverage
 1using DCL;
 2using Sentry.Extensibility;
 3
 4namespace DCLPlugins.SentryPlugin
 5{
 6    public class SentryPlugin : IPlugin
 7    {
 8        private readonly SentryController controller;
 9
 010        public SentryPlugin()
 11        {
 012            var sentryHub = DisabledHub.Instance;
 013            controller = new SentryController(DataStore.i.player, DataStore.i.realm, sentryHub);
 014        }
 15
 16        public void Dispose()
 17        {
 018            controller?.Dispose();
 019        }
 20    }
 21}

Methods/Properties

SentryPlugin()
Dispose()