< Summary

Class:Azure.DigitalTwins.Core.EventRouteCollection
Assembly:Azure.DigitalTwins.Core
File(s):C:\Git\azure-sdk-for-net\sdk\digitaltwins\Azure.DigitalTwins.Core\src\Generated\Models\EventRouteCollection.cs
C:\Git\azure-sdk-for-net\sdk\digitaltwins\Azure.DigitalTwins.Core\src\Generated\Models\EventRouteCollection.Serialization.cs
Covered lines:18
Uncovered lines:3
Coverable lines:21
Total lines:77
Line coverage:85.7% (18 of 21)
Covered branches:8
Total branches:8
Branch coverage:100% (8 of 8)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\digitaltwins\Azure.DigitalTwins.Core\src\Generated\Models\EventRouteCollection.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 Azure.Core;
 10
 11namespace Azure.DigitalTwins.Core
 12{
 13    /// <summary> A collection of EventRoute objects. </summary>
 14    internal partial class EventRouteCollection
 15    {
 16        /// <summary> Initializes a new instance of EventRouteCollection. </summary>
 017        internal EventRouteCollection()
 18        {
 019            Value = new ChangeTrackingList<EventRoute>();
 020        }
 21
 22        /// <summary> Initializes a new instance of EventRouteCollection. </summary>
 23        /// <param name="value"> The EventRoute objects. </param>
 24        /// <param name="nextLink"> A URI to retrieve the next page of results. </param>
 425        internal EventRouteCollection(IReadOnlyList<EventRoute> value, string nextLink)
 26        {
 427            Value = value;
 428            NextLink = nextLink;
 429        }
 30
 31        /// <summary> The EventRoute objects. </summary>
 432        public IReadOnlyList<EventRoute> Value { get; }
 33        /// <summary> A URI to retrieve the next page of results. </summary>
 434        public string NextLink { get; }
 35    }
 36}

C:\Git\azure-sdk-for-net\sdk\digitaltwins\Azure.DigitalTwins.Core\src\Generated\Models\EventRouteCollection.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.DigitalTwins.Core
 13{
 14    internal partial class EventRouteCollection
 15    {
 16        internal static EventRouteCollection DeserializeEventRouteCollection(JsonElement element)
 17        {
 418            Optional<IReadOnlyList<EventRoute>> value = default;
 419            Optional<string> nextLink = default;
 2420            foreach (var property in element.EnumerateObject())
 21            {
 822                if (property.NameEquals("value"))
 23                {
 424                    List<EventRoute> array = new List<EventRoute>();
 1625                    foreach (var item in property.Value.EnumerateArray())
 26                    {
 427                        array.Add(EventRoute.DeserializeEventRoute(item));
 28                    }
 429                    value = array;
 430                    continue;
 31                }
 432                if (property.NameEquals("nextLink"))
 33                {
 434                    nextLink = property.Value.GetString();
 35                    continue;
 36                }
 37            }
 438            return new EventRouteCollection(Optional.ToList(value), nextLink.Value);
 39        }
 40    }
 41}