< Summary

Class:SVETA.Api.Data.Domain.PasswordSetting
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Data/Domain/CRMSettings.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:23
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_Encrypted()100%100%
get_Value()100%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/Domain/CRMSettings.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace SVETA.Api.Data.Domain
 7{
 8    public class CrmSettings
 9    {
 10        public string AuthServiceUri { get; set; }
 11        public string ODataServiceAddr { get; set; }
 12        public string DaDataServiceAddr { get; set; }
 13        public string Username { get; set; }
 14        public PasswordSetting Password { get; set; }
 15        public bool ForceUseSession { get; set; }
 16    }
 17
 18    public class PasswordSetting
 19    {
 620        public bool Encrypted { get; set; }
 621        public string Value { get; set; }
 22    }
 23}

Methods/Properties

get_Encrypted()
get_Value()