< Summary

Information
Class: Backend.DTOs.MealPlanEntryDto
Assembly: Backend
File(s): D:\a\smart-meal-planner\smart-meal-planner\backend\Backend\DTOs\MealPlanEntryDto.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 10
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 Line coverage
get_Id()100%1100%
get_MealPlanId()100%1100%
get_RecipeId()100%1100%
get_Date()100%1100%

File(s)

D:\a\smart-meal-planner\smart-meal-planner\backend\Backend\DTOs\MealPlanEntryDto.cs

#LineLine coverage
 1namespace Backend.DTOs
 2{
 3    public class MealPlanEntryDto
 4    {
 25        public int Id { get; set; }
 26        public int MealPlanId { get; set; }
 27        public int RecipeId { get; set; }
 28        public DateTime? Date { get; set; }
 9    }
 10}