< Summary

Class:WebInterfaceHomeLocationController
Assembly:HomeLocation
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HomePoint/WebInterfaceHomeLocationController.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:10
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HomePoint/WebInterfaceHomeLocationController.cs

#LineLine coverage
 1using UnityEngine;
 2using DCL.Interface;
 3
 4public class WebInterfaceHomeLocationController : IHomeLocationController
 5{
 6    public void SetHomeScene(Vector2 location)
 7    {
 08        WebInterface.SetHomeScene($"{location.x},{location.y}");
 09    }
 10}