< Summary

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

Metrics

MethodLine coverage Branch coverage
get_ImageSavePath()100%100%
get_ImageUrl()100%100%
get_ImagePreveiwWidth()100%100%
get_ImagePreveiwHeight()100%100%
get_ImageFullsizeWidth()100%100%
get_ImageFullsizeHeight()100%100%
get_PlaceholderImageUrl()100%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/Domain/ImagesSettings.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 ImagesSettings
 9    {
 810        public string ImageSavePath { get; set; }
 3011        public string ImageUrl { get; set; }
 1912        public int ImagePreveiwWidth { get; set; }
 1913        public int ImagePreveiwHeight { get; set; }
 1914        public int ImageFullsizeWidth { get; set; }
 1915        public int ImageFullsizeHeight { get; set; }
 3016        public string PlaceholderImageUrl { get; set; }
 17    }
 18}