< Summary

Information
Class: Cff.Effect.Sha.HasSha256<T>
Assembly: Cff.Effect.Sha
File(s): /home/runner/work/Cff.Effect/Cff.Effect/src/Cff.Effect.Sha/HasSha256.cs
Tag: 43_3213223096
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 11
Line coverage: 100%
Branch coverage
100%
Covered branches: 2
Total branches: 2
Branch coverage: 100%
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

Coverage History

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
Cff.Effect.Abstractions.HasShaAbstract<RT>.get_ShaEff()100%2100%

File(s)

/home/runner/work/Cff.Effect/Cff.Effect/src/Cff.Effect.Sha/HasSha256.cs

#LineLine coverage
 1using Cff.Effect.Abstractions;
 2using LanguageExt.Attributes;
 3
 4namespace Cff.Effect.Sha;
 5
 6[Typeclass("*")]
 7public interface HasSha256<RT> : HasShaAbstract<RT>
 8    where RT : struct, HasSha256<RT>
 9{
 210    Eff<RT, ISha> HasShaAbstract<RT>.ShaEff => Eff<RT, ISha>(rt => new Sha256());
 11}