< Summary

Information
Class: Ice.Internal.Property
Assembly: Ice
File(s): /home/runner/work/ice/ice/csharp/src/Ice/Internal/Property.cs
Tag: 71_18251537082
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
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: 12
Total methods: 12
Method coverage: 100%

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
.ctor(...)100%210%
get_pattern()100%11100%
set_pattern(...)100%210%
get_usesRegex()100%11100%
set_usesRegex(...)100%210%
get_defaultValue()100%11100%
set_defaultValue(...)100%210%
get_deprecated()100%11100%
set_deprecated(...)100%210%
get_propertyArray()100%11100%
set_propertyArray(...)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
 7internal sealed record class PropertyArray(string name, bool prefixOnly, bool isOptIn, Property[] properties);
 8
 19internal sealed record class Property(
 110    string pattern,
 111    bool usesRegex,
 112    string defaultValue,
 113    bool deprecated,
 114    PropertyArray? propertyArray);