< Summary

Information
Class: cat_cafe.Mappers.CatMapper
Assembly: cat_cafe
File(s): C:\Users\draia\Documents\Dev\N3_CSHARP\cat_cafe\cat_cafe\Mappers\CatMapper.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 14
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
.ctor()100%11100%

File(s)

C:\Users\draia\Documents\Dev\N3_CSHARP\cat_cafe\cat_cafe\Mappers\CatMapper.cs

#LineLine coverage
 1using AutoMapper;
 2using cat_cafe.Dto;
 3using cat_cafe.Entities;
 4
 5namespace cat_cafe.Mappers
 6{
 7    public class CatMapper : Profile
 8    {
 59        public CatMapper()
 510        {
 511            CreateMap<Cat, CatDto>().ReverseMap();
 512        }
 13    }
 14}

Methods/Properties

.ctor()