< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.NodeFile
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\NodeFile.cs
Covered lines:10
Uncovered lines:2
Coverable lines:12
Total lines:76
Line coverage:83.3% (10 of 12)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-100%100%
get_Name()-100%100%
get_Url()-0%100%
get_IsDirectory()-0%100%
get_Properties()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\NodeFile.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.Batch.Protocol.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Information about a file or directory on a Compute Node.
 18    /// </summary>
 19    public partial class NodeFile
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the NodeFile class.
 23        /// </summary>
 1224        public NodeFile()
 25        {
 26            CustomInit();
 1227        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the NodeFile class.
 31        /// </summary>
 32        /// <param name="name">The file path.</param>
 33        /// <param name="url">The URL of the file.</param>
 34        /// <param name="isDirectory">Whether the object represents a
 35        /// directory.</param>
 36        /// <param name="properties">The file properties.</param>
 237        public NodeFile(string name = default(string), string url = default(string), bool? isDirectory = default(bool?),
 38        {
 239            Name = name;
 240            Url = url;
 241            IsDirectory = isDirectory;
 242            Properties = properties;
 43            CustomInit();
 244        }
 45
 46        /// <summary>
 47        /// An initialization method that performs custom operations like setting defaults
 48        /// </summary>
 49        partial void CustomInit();
 50
 51        /// <summary>
 52        /// Gets or sets the file path.
 53        /// </summary>
 54        [JsonProperty(PropertyName = "name")]
 2055        public string Name { get; set; }
 56
 57        /// <summary>
 58        /// Gets or sets the URL of the file.
 59        /// </summary>
 60        [JsonProperty(PropertyName = "url")]
 061        public string Url { get; set; }
 62
 63        /// <summary>
 64        /// Gets or sets whether the object represents a directory.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "isDirectory")]
 067        public bool? IsDirectory { get; set; }
 68
 69        /// <summary>
 70        /// Gets or sets the file properties.
 71        /// </summary>
 72        [JsonProperty(PropertyName = "properties")]
 2873        public FileProperties Properties { get; set; }
 74
 75    }
 76}