< Summary

Information
Class: Syki.Front.Features.Cross.ResetPassword.ResetPasswordClient
Assembly: Front
File(s): /home/runner/work/syki/syki/Front/Features/Cross/ResetPassword/ResetPasswordClient.cs
Tag: 22_11348620282
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 Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
Reset()100%11100%

File(s)

/home/runner/work/syki/syki/Front/Features/Cross/ResetPassword/ResetPasswordClient.cs

#LineLine coverage
 1namespace Syki.Front.Features.Cross.ResetPassword;
 2
 1373public class ResetPasswordClient(HttpClient http) : ICrossClient
 4{
 5    public async Task<HttpResponseMessage> Reset(string? token, string password)
 6    {
 1377        var data = new ResetPasswordIn { Token = token, Password = password };
 1378        return await http.PostAsJsonAsync("/reset-password", data);
 1379    }
 10}