< Summary

Class:WinSolutions.Sveta.Server.Data.DataModel.Entities.ClusterDeliveryType
Assembly:WinSolutions.Sveta.Server
File(s):/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Entities/ClusterDeliveryType.cs
Covered lines:2
Uncovered lines:2
Coverable lines:4
Total lines:15
Line coverage:50% (2 of 4)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_ClusterId()0%100%
get_Cluster()0%100%
get_DeliveryTypeId()100%100%
get_DeliveryType()100%100%

File(s)

/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Entities/ClusterDeliveryType.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace WinSolutions.Sveta.Server.Data.DataModel.Entities
 6{
 7    public class ClusterDeliveryType : RelationRecord, ITrackableRecord
 8    {
 09        public long ClusterId { get; set; }
 010        public Cluster Cluster { get; set; }
 11
 23212        public long DeliveryTypeId { get; set; }
 43413        public DeliveryType DeliveryType { get; set; }
 14    }
 15}