< Summary

Class:DCL.EmotesWheel.EmotesWheelUIPlugin
Assembly:AvatarEditorHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/AvatarEditorHUD/Scripts/EmotesCustomization/EmotesWheelUIPlugin.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:23
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:2
Method coverage:0% (0 of 2)

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/AvatarEditorHUD/Scripts/EmotesCustomization/EmotesWheelUIPlugin.cs

#LineLine coverage
 1using DCL.Emotes;
 2using DCLServices.WearablesCatalogService;
 3
 4namespace DCL.EmotesWheel
 5{
 6    /// <summary>
 7    /// Plugin feature that initialize the Emotes Wheel feature.
 8    /// </summary>
 9    public class EmotesWheelUIPlugin : IPlugin
 10    {
 11        public EmotesWheelController emotesWheelController;
 12
 013        public EmotesWheelUIPlugin()
 14        {
 015            emotesWheelController = new EmotesWheelController(
 16                UserProfile.GetOwnUserProfile(),
 17                Environment.i.serviceLocator.Get<IEmotesService>(),
 18                Environment.i.serviceLocator.Get<IWearablesCatalogService>());
 019        }
 20
 021        public void Dispose() { }
 22    }
 23}

Methods/Properties

EmotesWheelUIPlugin()
Dispose()