< Summary

Class:DCL.Controllers.HUD.MinimapHUDControllerDesktop
Assembly:MinimapHUDDesktop
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Desktop/Scripts/MainScripts/DCL/Controllers/HUD/Minimap/MinimapHUDControllerDesktop.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:24
Line coverage:0% (0 of 3)
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
CreateView()0%2100%
MinimapHUDControllerDesktop(...)0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Desktop/Scripts/MainScripts/DCL/Controllers/HUD/Minimap/MinimapHUDControllerDesktop.cs

#LineLine coverage
 1using DCLServices.CopyPaste.Analytics;
 2using DCLServices.PlacesAPIService;
 3
 4namespace DCL.Controllers.HUD
 5{
 6    public class MinimapHUDControllerDesktop : MinimapHUDController
 7    {
 8        protected override MinimapHUDView CreateView() =>
 09            MinimapHUDViewDesktop.Create(this);
 10
 11        public MinimapHUDControllerDesktop(
 12            MinimapMetadataController minimapMetadataController,
 13            IHomeLocationController locationController,
 14            Environment.Model environment,
 15            IPlacesAPIService placesAPIService,
 16            IPlacesAnalytics placesAnalytics,
 17            IClipboard clipboard,
 18            ICopyPasteAnalyticsService copyPasteAnalyticsService,
 19            DataStore_ContentModeration contentModerationDataStore,
 20            IWorldState worldState
 021        ) : base(minimapMetadataController, locationController, environment, placesAPIService, placesAnalytics, clipboar
 022            copyPasteAnalyticsService, contentModerationDataStore, worldState) { }
 23    }
 24}