< Summary

Class:MUNity.Database.Models.Conference.DelegationCostResult
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\DelegationCostResult.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:17
Line coverage:0% (0 of 5)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:2
Method coverage:0% (0 of 2)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_Costs()100%10%
.ctor()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\Models\Conference\DelegationCostResult.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Text;
 5using System.Threading.Tasks;
 6
 7namespace MUNity.Database.Models.Conference;
 8
 9public class DelegationCostResult
 10{
 011    public List<DelegationCostPoint> Costs { get; set; }
 12
 013    public DelegationCostResult()
 014    {
 015        Costs = new List<DelegationCostPoint>();
 016    }
 17}

Methods/Properties

get_Costs()
.ctor()