< Summary - Syki

Information
Class: Syki.Back.Database.Identity.DataProtectionKeyDbConfig
Assembly: Back
File(s): /home/runner/work/syki/syki/Back/Database/Identity/DataProtectionKeyDbConfig.cs
Tag: 97_27801654829
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 11
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
Configure(...)100%11100%

File(s)

/home/runner/work/syki/syki/Back/Database/Identity/DataProtectionKeyDbConfig.cs

#LineLine coverage
 1using Microsoft.AspNetCore.DataProtection.EntityFrameworkCore;
 2
 3namespace Syki.Back.Database.Identity;
 4
 5public class DataProtectionKeyDbConfig : IEntityTypeConfiguration<DataProtectionKey>
 6{
 7    public void Configure(EntityTypeBuilder<DataProtectionKey> entity)
 8    {
 49        entity.ToTable("data_protection_keys", DbSchemas.Syki);
 410    }
 11}