< Summary

Information
Class: Backend.DTOs.RecipeIngredientDto
Assembly: Backend
File(s): D:\a\smart-meal-planner\smart-meal-planner\backend\Backend\DTOs\RecipeIngredientDto.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_RecipeId()100%1100%
get_IngredientId()100%1100%
get_Quantity()100%1100%
get_Unit()100%1100%

File(s)

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

#LineLine coverage
 1namespace Backend.DTOs
 2{
 3    public class RecipeIngredientDto
 4    {
 25        public int RecipeId { get; set; }
 26        public int IngredientId { get; set; }
 27        public decimal Quantity { get; set; }
 28        public string? Unit { get; set; }
 9    }
 10}