< Summary

Information
Class: Elsa.Persistence.VNext.PersistenceTable
Assembly: Elsa.Persistence.VNext
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Persistence.VNext/Models/PersistenceTable.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 8
Line coverage: 0%
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%210%
get_Name()100%210%
get_Schema()100%210%
get_Columns()100%210%
get_PrimaryKey()100%210%
get_Indexes()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Persistence.VNext/Models/PersistenceTable.cs

#LineLine coverage
 1namespace Elsa.Persistence.VNext;
 2
 03public record PersistenceTable(
 04    string Name,
 05    string? Schema,
 06    IReadOnlyList<PersistenceColumn> Columns,
 07    PersistencePrimaryKey? PrimaryKey,
 08    IReadOnlyList<PersistenceIndex> Indexes);