< Summary

Class:Azure.ResourceManager.Storage.Models.ListTableServices
Assembly:Azure.ResourceManager.Storage
File(s):C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\ListTableServices.cs
C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\ListTableServices.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%
DeserializeListTableServices(...)-0%0%

File(s)

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

C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\ListTableServices.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 ListTableServices
 15    {
 16        internal static ListTableServices DeserializeListTableServices(JsonElement element)
 17        {
 018            IReadOnlyList<TableServiceProperties> 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<TableServiceProperties> array = new List<TableServiceProperties>();
 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(TableServiceProperties.DeserializeTableServiceProperties(item));
 37                        }
 38                    }
 039                    value = array;
 40                    continue;
 41                }
 42            }
 043            return new ListTableServices(value);
 44        }
 45    }
 46}