< Summary

Information
Class: FLP.Application.Profiles.BugProfile
Assembly: FLP.Application
File(s): /home/runner/work/FLP.AzureFunctions/FLP.AzureFunctions/FLP.Application/Profiles/BugProfile.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 16
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 Crap Score Cyclomatic complexity Line coverage
.ctor()100%11100%

File(s)

/home/runner/work/FLP.AzureFunctions/FLP.AzureFunctions/FLP.Application/Profiles/BugProfile.cs

#LineLine coverage
 1using AutoMapper;
 2using FLP.Application.Requests.Bugs;
 3using FLP.Application.Responses.Bugs;
 4using FLP.Core.Context.Main;
 5
 6namespace FLP.Application.Profiles;
 7
 8public class BugProfile : Profile
 9{
 1210    public BugProfile()
 1211    {
 1212        CreateMap<CreateBugRequest, Bug>();
 1213        CreateMap<Bug, GetBugByIdResponse>();
 1214        CreateMap<Bug, GetBugResponse>();
 1215    }
 16}

Methods/Properties

.ctor()