< Summary

Class:DCL.Emotes.EmoteAnimationsPlugin
Assembly:EmoteAnimationsPlugin
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLPlugins/EmoteAnimations/EmoteAnimationsPlugin.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:14
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLPlugins/EmoteAnimations/EmoteAnimationsPlugin.cs

#LineLine coverage
 1using AvatarSystem;
 2
 3namespace DCL.Emotes
 4{
 5    // [ADR 66 - https://github.com/decentraland/adr]
 6    public class EmoteAnimationsPlugin : IPlugin
 7    {
 8        private readonly EmoteAnimationsTracker emotesAnimationTracker;
 9
 010        public EmoteAnimationsPlugin() { emotesAnimationTracker = new EmoteAnimationsTracker(DataStore.i.emotes, new Emo
 11
 012        public void Dispose() { emotesAnimationTracker?.Dispose(); }
 13    }
 14}

Methods/Properties

EmoteAnimationsPlugin()
Dispose()