< Summary

Class:Azure.ResourceManager.Compute.Models.DiskList
Assembly:Azure.ResourceManager.Compute
File(s):C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\DiskList.cs
C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\DiskList.Serialization.cs
Covered lines:17
Uncovered lines:9
Coverable lines:26
Total lines:95
Line coverage:65.3% (17 of 26)
Covered branches:9
Total branches:16
Branch coverage:56.2% (9 of 16)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-0%0%
.ctor(...)-100%50%
get_Value()-100%100%
get_NextLink()-100%100%
DeserializeDiskList(...)-73.33%66.67%

File(s)

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\DiskList.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;
 9using System.Collections.Generic;
 10using System.Linq;
 11
 12namespace Azure.ResourceManager.Compute.Models
 13{
 14    /// <summary> The List Disks operation response. </summary>
 15    public partial class DiskList
 16    {
 17        /// <summary> Initializes a new instance of DiskList. </summary>
 18        /// <param name="value"> A list of disks. </param>
 019        internal DiskList(IEnumerable<Disk> value)
 20        {
 021            if (value == null)
 22            {
 023                throw new ArgumentNullException(nameof(value));
 24            }
 25
 026            Value = value.ToArray();
 027        }
 28
 29        /// <summary> Initializes a new instance of DiskList. </summary>
 30        /// <param name="value"> A list of disks. </param>
 31        /// <param name="nextLink"> The uri to fetch the next page of disks. Call ListNext() with this to fetch the next
 2432        internal DiskList(IReadOnlyList<Disk> value, string nextLink)
 33        {
 2434            Value = value ?? new List<Disk>();
 2435            NextLink = nextLink;
 2436        }
 37
 38        /// <summary> A list of disks. </summary>
 2439        public IReadOnlyList<Disk> Value { get; }
 40        /// <summary> The uri to fetch the next page of disks. Call ListNext() with this to fetch the next page of disks
 2441        public string NextLink { get; }
 42    }
 43}

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\DiskList.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.Compute.Models
 13{
 14    public partial class DiskList
 15    {
 16        internal static DiskList DeserializeDiskList(JsonElement element)
 17        {
 2418            IReadOnlyList<Disk> value = default;
 2419            string nextLink = default;
 9620            foreach (var property in element.EnumerateObject())
 21            {
 2422                if (property.NameEquals("value"))
 23                {
 2424                    List<Disk> array = new List<Disk>();
 17625                    foreach (var item in property.Value.EnumerateArray())
 26                    {
 6427                        if (item.ValueKind == JsonValueKind.Null)
 28                        {
 029                            array.Add(null);
 30                        }
 31                        else
 32                        {
 6433                            array.Add(Disk.DeserializeDisk(item));
 34                        }
 35                    }
 2436                    value = array;
 2437                    continue;
 38                }
 039                if (property.NameEquals("nextLink"))
 40                {
 041                    if (property.Value.ValueKind == JsonValueKind.Null)
 42                    {
 43                        continue;
 44                    }
 045                    nextLink = property.Value.GetString();
 46                    continue;
 47                }
 48            }
 2449            return new DiskList(value, nextLink);
 50        }
 51    }
 52}