< Summary

Information
Class: Elsa.Persistence.VNext.Document.DocumentCollection
Assembly: Elsa.Persistence.VNext
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Persistence.VNext/Document/DocumentCollection.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 8
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_Name()100%11100%
get_Namespace()100%11100%
get_Fields()100%11100%
get_KeyFields()100%11100%
get_Indexes()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Persistence.VNext/Document/DocumentCollection.cs

#LineLine coverage
 1namespace Elsa.Persistence.VNext.Document;
 2
 243public record DocumentCollection(
 1344    string Name,
 45    string? Namespace,
 26    IReadOnlyList<DocumentField> Fields,
 17    IReadOnlyList<string> KeyFields,
 1048    IReadOnlyList<DocumentIndex> Indexes);