< Summary

Class:DCL.Social.Chat.ChatEntrySortingSequentially
Assembly:ChatHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/ChatWidgetHUD/ChatEntrySortingSequentally.cs
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:9
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0
Covered methods:1
Total methods:1
Method coverage:100% (1 of 1)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Compare(...)0%110100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/ChatWidgetHUD/ChatEntrySortingSequentally.cs

#LineLine coverage
 1using System.Collections.Generic;
 2
 3namespace DCL.Social.Chat
 4{
 5    public class ChatEntrySortingSequentially : IComparer<ChatEntryModel>
 6    {
 37        public int Compare(ChatEntryModel x, ChatEntryModel y) => 0;
 8    }
 9}