< Summary

Information
Class: System.IO.Compression.ZipCryptoKeys
Assembly: System.IO.Compression
File(s): D:\runner\runtime\src\libraries\System.IO.Compression\src\System\IO\Compression\ZipCryptoKeys.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 19
Line coverage: 0%
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 Cyclomatic complexity NPath complexity Sequence coverage
.ctor(...)100%110%

File(s)

D:\runner\runtime\src\libraries\System.IO.Compression\src\System\IO\Compression\ZipCryptoKeys.cs

#LineLine coverage
 1// Licensed to the .NET Foundation under one or more agreements.
 2// The .NET Foundation licenses this file to you under the MIT license.
 3
 4namespace System.IO.Compression
 5{
 6    internal readonly struct ZipCryptoKeys
 7    {
 8        internal readonly uint Key0;
 9        internal readonly uint Key1;
 10        internal readonly uint Key2;
 11
 12        internal ZipCryptoKeys(uint key0, uint key1, uint key2)
 013        {
 014            Key0 = key0;
 015            Key1 = key1;
 016            Key2 = key2;
 017        }
 18    }
 19}