< Summary

Class:DCL.MapChunk_Mock
Assembly:MapRendererTests
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/MapRenderer/Tests/MapChunk_Mock.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
LoadChunkImage()0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/MapRenderer/Tests/MapChunk_Mock.cs

#LineLine coverage
 1using UnityEngine.Networking;
 2
 3namespace DCL
 4{
 5    public class MapChunk_Mock : MapChunk
 6    {
 7        public override WebRequestAsyncOperation LoadChunkImage()
 8        {
 09            isLoadingOrLoaded = true;
 10
 011            return new WebRequestAsyncOperation(null);
 12        }
 13    }
 14}

Methods/Properties

LoadChunkImage()