< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Id()-100%100%
get_DisplayName()-100%100%
get_Versions()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\ApplicationSummary.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.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Contains information about an application in an Azure Batch Account.
 20    /// </summary>
 21    public partial class ApplicationSummary
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the ApplicationSummary class.
 25        /// </summary>
 1426        public ApplicationSummary()
 27        {
 28            CustomInit();
 1429        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the ApplicationSummary class.
 33        /// </summary>
 34        /// <param name="id">A string that uniquely identifies the application
 35        /// within the Account.</param>
 36        /// <param name="displayName">The display name for the
 37        /// application.</param>
 38        /// <param name="versions">The list of available versions of the
 39        /// application.</param>
 040        public ApplicationSummary(string id, string displayName, IList<string> versions)
 41        {
 042            Id = id;
 043            DisplayName = displayName;
 044            Versions = versions;
 45            CustomInit();
 046        }
 47
 48        /// <summary>
 49        /// An initialization method that performs custom operations like setting defaults
 50        /// </summary>
 51        partial void CustomInit();
 52
 53        /// <summary>
 54        /// Gets or sets a string that uniquely identifies the application
 55        /// within the Account.
 56        /// </summary>
 57        [JsonProperty(PropertyName = "id")]
 2658        public string Id { get; set; }
 59
 60        /// <summary>
 61        /// Gets or sets the display name for the application.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "displayName")]
 1864        public string DisplayName { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets the list of available versions of the application.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "versions")]
 3470        public IList<string> Versions { get; set; }
 71
 72    }
 73}