< Summary

Information
Class: GistBackend.Types.TranslationAIResponse
Assembly: GistBackend
File(s): /home/runner/work/the-gist-of-it-sec/the-gist-of-it-sec/backend/GistBackend/Types/TranslationAIResponse.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 4
Coverable lines: 4
Total lines: 6
Line coverage: 0%
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%210%
get_Title()100%210%
get_Summary()100%210%

File(s)

/home/runner/work/the-gist-of-it-sec/the-gist-of-it-sec/backend/GistBackend/Types/TranslationAIResponse.cs

#LineLine coverage
 1namespace GistBackend.Types;
 2
 03public record TranslationAIResponse(
 04    string Title,
 05    string Summary
 06);