< Summary

Information
Class: event_list.modules.eventlist.storage.EventListDto
Assembly: event-list
File(s): /Users/tiagoamaral/Workspace/desafio/event-list-api/Src/Shared/Dtos/EventListDto.cs
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 8
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
get_Id()100%11100%
get_Title()100%11100%
get_Date()100%11100%

File(s)

/Users/tiagoamaral/Workspace/desafio/event-list-api/Src/Shared/Dtos/EventListDto.cs

#LineLine coverage
 1namespace event_list.modules.eventlist.storage;
 2
 3public class EventListDto
 4{
 175    public Guid? Id { get; set; } = null;
 186    public string Title { get; set; } = string.Empty;
 97    public DateTime Date { get; set; }
 8}

Methods/Properties

get_Id()
get_Title()
get_Date()