< Summary

Class:DCL.CleanableYieldInstruction
Assembly:CoroutineHelpers
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Helpers/CoroutineHelpers/CleanableYieldInstruction.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:11
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Helpers/CoroutineHelpers/CleanableYieldInstruction.cs

#LineLine coverage
 1using UnityEngine;
 2
 3namespace DCL
 4{
 5    public class CleanableYieldInstruction : CustomYieldInstruction, ICleanable
 6    {
 07        public virtual void Cleanup() { }
 8
 09        public override bool keepWaiting { get { return false; } }
 10    }
 11}

Methods/Properties

Cleanup()
keepWaiting()