< Summary

Class:NFTPromptModel
Assembly:NFTPromptModel
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/NFTPromptHUD/Scripts/NFTPromptModel/NFTPromptModel.cs
Covered lines:6
Uncovered lines:0
Coverable lines:6
Total lines:15
Line coverage:100% (6 of 6)
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
NFTPromptModel(...)0%110100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/NFTPromptHUD/Scripts/NFTPromptModel/NFTPromptModel.cs

#LineLine coverage
 1public class NFTPromptModel
 2{
 3    public string contactAddress;
 4    public string comment;
 5    public string tokenId;
 6    public string chain;
 7
 28    public NFTPromptModel(string chain, string contactAddress, string tokenId, string comment)
 9    {
 210        this.chain = chain;
 211        this.contactAddress = contactAddress;
 212        this.tokenId = tokenId;
 213        this.comment = comment;
 214    }
 15}