< Summary

Information
Class: Ice.Internal.PropertyArray
Assembly: Ice
File(s): /_/csharp/src/Ice/Internal/Property.cs
Tag: 99_23991109993
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 14
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage
100%
Covered methods: 1
Total methods: 1
Method coverage: 100%

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%

File(s)

/_/csharp/src/Ice/Internal/Property.cs

#LineLine coverage
 1// Copyright (c) ZeroC, Inc.
 2
 3#nullable enable
 4
 5namespace Ice.Internal;
 6
 17internal sealed record class PropertyArray(string name, bool prefixOnly, bool isOptIn, Property[] properties);
 8
 9internal sealed record class Property(
 10    string pattern,
 11    bool usesRegex,
 12    string defaultValue,
 13    bool deprecated,
 14    PropertyArray? propertyArray);