< Summary

Class:Azure.ResourceManager.Network.Models.Dimension
Assembly:Azure.ResourceManager.Network
File(s):C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\Dimension.cs
C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\Dimension.Serialization.cs
Covered lines:0
Uncovered lines:26
Coverable lines:26
Total lines:89
Line coverage:0% (0 of 26)
Covered branches:0
Total branches:14
Branch coverage:0% (0 of 14)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Name()-0%100%
get_DisplayName()-0%100%
get_InternalName()-0%100%
DeserializeDimension(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\Dimension.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8namespace Azure.ResourceManager.Network.Models
 9{
 10    /// <summary> Dimension of the metric. </summary>
 11    public partial class Dimension
 12    {
 13        /// <summary> Initializes a new instance of Dimension. </summary>
 014        internal Dimension()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of Dimension. </summary>
 19        /// <param name="name"> The name of the dimension. </param>
 20        /// <param name="displayName"> The display name of the dimension. </param>
 21        /// <param name="internalName"> The internal name of the dimension. </param>
 022        internal Dimension(string name, string displayName, string internalName)
 23        {
 024            Name = name;
 025            DisplayName = displayName;
 026            InternalName = internalName;
 027        }
 28
 29        /// <summary> The name of the dimension. </summary>
 030        public string Name { get; }
 31        /// <summary> The display name of the dimension. </summary>
 032        public string DisplayName { get; }
 33        /// <summary> The internal name of the dimension. </summary>
 034        public string InternalName { get; }
 35    }
 36}

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\Dimension.Serialization.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8using System.Text.Json;
 9using Azure.Core;
 10
 11namespace Azure.ResourceManager.Network.Models
 12{
 13    public partial class Dimension
 14    {
 15        internal static Dimension DeserializeDimension(JsonElement element)
 16        {
 017            string name = default;
 018            string displayName = default;
 019            string internalName = default;
 020            foreach (var property in element.EnumerateObject())
 21            {
 022                if (property.NameEquals("name"))
 23                {
 024                    if (property.Value.ValueKind == JsonValueKind.Null)
 25                    {
 26                        continue;
 27                    }
 028                    name = property.Value.GetString();
 029                    continue;
 30                }
 031                if (property.NameEquals("displayName"))
 32                {
 033                    if (property.Value.ValueKind == JsonValueKind.Null)
 34                    {
 35                        continue;
 36                    }
 037                    displayName = property.Value.GetString();
 038                    continue;
 39                }
 040                if (property.NameEquals("internalName"))
 41                {
 042                    if (property.Value.ValueKind == JsonValueKind.Null)
 43                    {
 44                        continue;
 45                    }
 046                    internalName = property.Value.GetString();
 47                    continue;
 48                }
 49            }
 050            return new Dimension(name, displayName, internalName);
 51        }
 52    }
 53}