< Summary

Information
Class: LifeChart.Application.DTOs.DailyEntryDto
Assembly: LifeChart.Application
File(s): /home/runner/work/lifechart/lifechart/src/LifeChart.Application/DTOs/DailyEntryDto.cs
Tag: 113_29159449707
Line coverage
100%
Covered lines: 11
Uncovered lines: 0
Coverable lines: 11
Total lines: 13
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%
get_Date()100%11100%
get_Mood()100%11100%
get_Functionality()100%11100%
get_SleepHours()100%11100%
get_MedicationTaken()100%11100%
get_MenstrualCycle()100%11100%
get_Symptoms()100%11100%
get_Notes()100%11100%
get_IsHypomanic()100%11100%

File(s)

/home/runner/work/lifechart/lifechart/src/LifeChart.Application/DTOs/DailyEntryDto.cs

#LineLine coverage
 1namespace LifeChart.Application.DTOs;
 2
 93public record DailyEntryDto(
 94    DateOnly Date,
 95    int Mood,
 86    int Functionality,
 87    int SleepHours,
 88    bool MedicationTaken,
 89    bool MenstrualCycle,
 810    string? Symptoms,
 811    string? Notes,
 812    bool IsHypomanic = false
 913);