< Summary

Class:MUNity.Database.FluentAPI.CommitteeSeatOptions
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\FluentAPI\CommitteeSeatOptions.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:10
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:3
Method coverage:0% (0 of 3)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_CommitteeId()100%10%
get_CountryId()100%10%
get_SeatName()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\FluentAPI\CommitteeSeatOptions.cs

#LineLine coverage
 1namespace MUNity.Database.FluentAPI;
 2
 3public class CommitteeSeatOptions
 4{
 05    public string CommitteeId { get; set; }
 6
 07    public int CountryId { get; set; }
 8
 09    public string SeatName { get; set; }
 10}