< Summary

Information
Class: BookstoreAPI.Models.Book
Assembly: BookstoreAPI
File(s): /home/runner/work/dotnet-unit-test-webinar/dotnet-unit-test-webinar/BookstoreAPI/Models/Book.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 11
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_Author()100%11100%
get_ISBN()100%11100%
get_Description()100%11100%

File(s)

/home/runner/work/dotnet-unit-test-webinar/dotnet-unit-test-webinar/BookstoreAPI/Models/Book.cs

#LineLine coverage
 1namespace BookstoreAPI.Models
 2{
 3    public class Book
 4    {
 445        public int Id { get; set; }
 386        public string Title { get; set; }
 347        public string Author { get; set; }
 358        public string ISBN { get; set; }
 349        public string Description { get; set; }
 10    }
 11}