< Summary - Syki

Information
Class: Syki.Front.Features.Cross.Logout.LogoutClient
Assembly: Front
File(s): /home/runner/work/syki/syki/Front/Features/Cross/Logout/LogoutClient.cs
Tag: 4_16869239191
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 9
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%
Logout()100%11100%

File(s)

/home/runner/work/syki/syki/Front/Features/Cross/Logout/LogoutClient.cs

#LineLine coverage
 1namespace Syki.Front.Features.Cross.Logout;
 2
 303public class LogoutClient(HttpClient http) : ICrossClient
 4{
 5    public async Task<HttpResponseMessage> Logout()
 6    {
 307        return await http.PostAsJsonAsync("/logout", new {});
 308    }
 9}