< Summary

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

Metrics

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

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/Domain/AuthorizationSettings.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 AuthorizationSettings
 9    {
 10        public string IdentityUrl { get; set; }
 11        public string ApiName { get; set; }
 12        public ApiSecretSetting ApiSecret { get; set; }
 13
 14    }
 15
 16    public class ApiSecretSetting
 17    {
 018        public bool Encrypted { get; set; }
 019        public string Value { get; set; }
 20    }
 21}

Methods/Properties

get_Encrypted()
get_Value()