< Summary

Information
Class: Ice.Internal.PropertyArray
Assembly: Ice
File(s): /home/runner/work/ice/ice/csharp/src/Ice/Internal/Property.cs
Tag: 71_18251537082
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: 10
Total methods: 10
Method coverage: 100%

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_name()100%11100%
set_name(...)100%210%
get_prefixOnly()100%11100%
set_prefixOnly(...)100%210%
get_isOptIn()100%11100%
set_isOptIn(...)100%210%
get_properties()100%11100%
set_properties(...)100%210%
.ctor(...)100%210%

File(s)

/home/runner/work/ice/ice/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);