< Summary

Class:Azure.ResourceManager.Storage.Models.ListQueueServices
Assembly:Azure.ResourceManager.Storage
File(s):C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\ListQueueServices.cs
C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\ListQueueServices.Serialization.cs
Covered lines:0
Uncovered lines:17
Coverable lines:17
Total lines:76
Line coverage:0% (0 of 17)
Covered branches:0
Total branches:10
Branch coverage:0% (0 of 10)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Value()-0%100%
DeserializeListQueueServices(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\ListQueueServices.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.Storage.Models
 11{
 12    /// <summary> The ListQueueServices. </summary>
 13    public partial class ListQueueServices
 14    {
 15        /// <summary> Initializes a new instance of ListQueueServices. </summary>
 016        internal ListQueueServices()
 17        {
 018        }
 19
 20        /// <summary> Initializes a new instance of ListQueueServices. </summary>
 21        /// <param name="value"> List of queue services returned. </param>
 022        internal ListQueueServices(IReadOnlyList<QueueServiceProperties> value)
 23        {
 024            Value = value;
 025        }
 26
 27        /// <summary> List of queue services returned. </summary>
 028        public IReadOnlyList<QueueServiceProperties> Value { get; }
 29    }
 30}

C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\ListQueueServices.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.Storage.Models
 13{
 14    public partial class ListQueueServices
 15    {
 16        internal static ListQueueServices DeserializeListQueueServices(JsonElement element)
 17        {
 018            IReadOnlyList<QueueServiceProperties> value = default;
 019            foreach (var property in element.EnumerateObject())
 20            {
 021                if (property.NameEquals("value"))
 22                {
 023                    if (property.Value.ValueKind == JsonValueKind.Null)
 24                    {
 25                        continue;
 26                    }
 027                    List<QueueServiceProperties> array = new List<QueueServiceProperties>();
 028                    foreach (var item in property.Value.EnumerateArray())
 29                    {
 030                        if (item.ValueKind == JsonValueKind.Null)
 31                        {
 032                            array.Add(null);
 33                        }
 34                        else
 35                        {
 036                            array.Add(QueueServiceProperties.DeserializeQueueServiceProperties(item));
 37                        }
 38                    }
 039                    value = array;
 40                    continue;
 41                }
 42            }
 043            return new ListQueueServices(value);
 44        }
 45    }
 46}