< Summary

Class:Microsoft.Azure.Batch.OutputFileDestination
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\OutputFileDestination.cs
C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\OutputFileDestination.cs
Covered lines:10
Uncovered lines:8
Coverable lines:18
Total lines:98
Line coverage:55.5% (10 of 18)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-0%100%
.ctor(...)-100%100%
get_Container()-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%
Microsoft.Azure.Batch.ITransportObjectProvider<Microsoft.Azure.Batch.Protocol.Models.OutputFileDestination>.GetTransportObject()-100%100%
.ctor(...)-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\OutputFileDestination.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//
 012
 13namespace Microsoft.Azure.Batch
 014{
 015    using Models = Microsoft.Azure.Batch.Protocol.Models;
 16    using System;
 17    using System.Collections.Generic;
 18    using System.Linq;
 19
 20    /// <summary>
 21    /// The destination to which a file should be uploaded.
 22    /// </summary>
 23    public partial class OutputFileDestination : ITransportObjectProvider<Models.OutputFileDestination>, IPropertyMetada
 24    {
 25        #region Constructors
 26
 286427        internal OutputFileDestination(Models.OutputFileDestination protocolObject)
 28        {
 431029            this.Container = UtilitiesInternal.CreateObjectWithNullCheck(protocolObject.Container, o => new OutputFileBl
 286430        }
 31
 32        #endregion Constructors
 33
 34        #region OutputFileDestination
 35
 36        /// <summary>
 37        /// Gets a location in Azure blob storage to which files are uploaded.
 38        /// </summary>
 376039        public OutputFileBlobContainerDestination Container { get; }
 40
 41        #endregion // OutputFileDestination
 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
 196657            }
 58        }
 59
 60        #endregion // IPropertyMetadata
 61
 62        #region Internal/private methods
 63
 64        /// <summary>
 65        /// Return a protocol object of the requested type.
 66        /// </summary>
 67        /// <returns>The protocol object of the requested type.</returns>
 68        Models.OutputFileDestination ITransportObjectProvider<Models.OutputFileDestination>.GetTransportObject()
 69        {
 89770            Models.OutputFileDestination result = new Models.OutputFileDestination()
 89771            {
 133772                Container = UtilitiesInternal.CreateObjectWithNullCheck(this.Container, (o) => o.GetTransportObject()),
 89773            };
 74
 89775            return result;
 76        }
 77
 78
 79        #endregion // Internal/private methods
 80    }
 81}

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\OutputFileDestination.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
 4namespace Microsoft.Azure.Batch
 5{
 6    public partial class OutputFileDestination
 7    {
 8        /// <summary>
 9        /// Initializes a new instance of the <see cref="OutputFileDestination"/> class.
 10        /// </summary>
 11        /// <param name="container">A location in Azure blob storage to which files are uploaded.</param>
 012        public OutputFileDestination(OutputFileBlobContainerDestination container)
 13        {
 014            this.Container = container;
 015        }
 16    }
 17}