< Summary

Class:Microsoft.Azure.Batch.ComputeNodeEndpointConfiguration
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\ComputeNodeEndpointConfiguration.cs
Covered lines:5
Uncovered lines:2
Coverable lines:7
Total lines:62
Line coverage:71.4% (5 of 7)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
get_InboundEndpoints()-100%100%
Microsoft.Azure.Batch.IModifiable.get_HasBeenModified()-0%100%
Microsoft.Azure.Batch.IReadOnly.get_IsReadOnly()-0%100%
Microsoft.Azure.Batch.IReadOnly.set_IsReadOnly(...)-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\ComputeNodeEndpointConfiguration.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License. See License.txt in the project root for license information.
 3//
 4// Code generated by Microsoft (R) AutoRest Code Generator.
 5// Changes may cause incorrect behavior and will be lost if the code is
 6// regenerated.
 7
 8//
 9// This file was autogenerated by a tool.
 10// Do not modify it.
 11//
 12
 13namespace Microsoft.Azure.Batch
 14{
 15    using Models = Microsoft.Azure.Batch.Protocol.Models;
 16    using System;
 17    using System.Collections.Generic;
 18    using System.Linq;
 19
 20    /// <summary>
 21    /// The endpoint configuration for the compute node.
 22    /// </summary>
 23    public partial class ComputeNodeEndpointConfiguration : IPropertyMetadata
 24    {
 25        #region Constructors
 26
 48927        internal ComputeNodeEndpointConfiguration(Models.ComputeNodeEndpointConfiguration protocolObject)
 28        {
 48929            this.InboundEndpoints = InboundEndpoint.ConvertFromProtocolCollectionReadOnly(protocolObject.InboundEndpoint
 48930        }
 31
 32        #endregion Constructors
 33
 34        #region ComputeNodeEndpointConfiguration
 35
 36        /// <summary>
 37        /// Gets the list of inbound endpoints that are accessible on the compute node.
 38        /// </summary>
 48939        public IReadOnlyList<InboundEndpoint> InboundEndpoints { get; }
 40
 41        #endregion // ComputeNodeEndpointConfiguration
 42
 43        #region IPropertyMetadata
 44
 45        bool IModifiable.HasBeenModified
 46        {
 47            //This class is compile time readonly so it cannot have been modified
 048            get { return false; }
 49        }
 50
 51        bool IReadOnly.IsReadOnly
 52        {
 053            get { return true; }
 54            set
 55            {
 56                // This class is compile time readonly already
 48957            }
 58        }
 59
 60        #endregion // IPropertyMetadata
 61    }
 62}