< Summary

Class:Azure.ResourceManager.Network.Models.NetworkInterfaceListResult
Assembly:Azure.ResourceManager.Network
File(s):C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\NetworkInterfaceListResult.cs
C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\NetworkInterfaceListResult.Serialization.cs
Covered lines:18
Uncovered lines:6
Coverable lines:24
Total lines:90
Line coverage:75% (18 of 24)
Covered branches:10
Total branches:14
Branch coverage:71.4% (10 of 14)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-100%100%
get_Value()-100%100%
get_NextLink()-100%100%
DeserializeNetworkInterfaceListResult(...)-75%71.43%

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\NetworkInterfaceListResult.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.Collections.Generic;
 9
 10namespace Azure.ResourceManager.Network.Models
 11{
 12    /// <summary> Response for the ListNetworkInterface API service call. </summary>
 13    public partial class NetworkInterfaceListResult
 14    {
 15        /// <summary> Initializes a new instance of NetworkInterfaceListResult. </summary>
 016        internal NetworkInterfaceListResult()
 17        {
 018        }
 19
 20        /// <summary> Initializes a new instance of NetworkInterfaceListResult. </summary>
 21        /// <param name="value"> A list of network interfaces in a resource group. </param>
 22        /// <param name="nextLink"> The URL to get the next set of results. </param>
 7223        internal NetworkInterfaceListResult(IReadOnlyList<NetworkInterface> value, string nextLink)
 24        {
 7225            Value = value;
 7226            NextLink = nextLink;
 7227        }
 28
 29        /// <summary> A list of network interfaces in a resource group. </summary>
 7230        public IReadOnlyList<NetworkInterface> Value { get; }
 31        /// <summary> The URL to get the next set of results. </summary>
 7232        public string NextLink { get; }
 33    }
 34}

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\NetworkInterfaceListResult.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.Collections.Generic;
 9using System.Text.Json;
 10using Azure.Core;
 11
 12namespace Azure.ResourceManager.Network.Models
 13{
 14    public partial class NetworkInterfaceListResult
 15    {
 16        internal static NetworkInterfaceListResult DeserializeNetworkInterfaceListResult(JsonElement element)
 17        {
 7218            IReadOnlyList<NetworkInterface> value = default;
 7219            string nextLink = default;
 28820            foreach (var property in element.EnumerateObject())
 21            {
 7222                if (property.NameEquals("value"))
 23                {
 7224                    if (property.Value.ValueKind == JsonValueKind.Null)
 25                    {
 26                        continue;
 27                    }
 7228                    List<NetworkInterface> array = new List<NetworkInterface>();
 32829                    foreach (var item in property.Value.EnumerateArray())
 30                    {
 9231                        if (item.ValueKind == JsonValueKind.Null)
 32                        {
 033                            array.Add(null);
 34                        }
 35                        else
 36                        {
 9237                            array.Add(NetworkInterface.DeserializeNetworkInterface(item));
 38                        }
 39                    }
 7240                    value = array;
 7241                    continue;
 42                }
 043                if (property.NameEquals("nextLink"))
 44                {
 045                    if (property.Value.ValueKind == JsonValueKind.Null)
 46                    {
 47                        continue;
 48                    }
 049                    nextLink = property.Value.GetString();
 50                    continue;
 51                }
 52            }
 7253            return new NetworkInterfaceListResult(value, nextLink);
 54        }
 55    }
 56}