< Summary

Information
Class: Common.AesKey
Assembly: Common
File(s): /home/runner/work/poc-aes-type/poc-aes-type/src/Common/AesKey.cs
Tag: 6_2147224979
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 8
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

Coverage History

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_Value()100%1100%
ToString()100%1100%

File(s)

/home/runner/work/poc-aes-type/poc-aes-type/src/Common/AesKey.cs

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2
 3namespace Common;
 4
 125public readonly record struct AesKey([property: MinLength(32), MaxLength(32)] byte[] Value)
 6{
 27    public override string ToString() => Convert.ToBase64String(Value);
 8}

Methods/Properties

get_Value()
ToString()