< Summary

Class:Microsoft.Azure.Batch.AddTaskResult
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\AddTaskResult.cs
C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\AddTaskResult.cs
Covered lines:26
Uncovered lines:18
Coverable lines:44
Total lines:171
Line coverage:59% (26 of 44)
Covered branches:6
Total branches:10
Branch coverage:60% (6 of 10)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
Microsoft.Azure.Batch.IReadOnly.get_IsReadOnly()-100%100%
Microsoft.Azure.Batch.IReadOnly.set_IsReadOnly(...)-100%100%
.ctor(...)-100%100%
get_Task()-100%100%
.ctor(...)-100%100%
get_RetryCount()-100%100%
ToString()-100%60%
get_Error()-100%100%
get_ETag()-100%50%
get_LastModified()-100%100%
get_Location()-100%100%
get_Status()-100%100%
get_TaskId()-100%100%
Microsoft.Azure.Batch.IModifiable.get_HasBeenModified()-0%100%
.ctor(...)-0%100%
get_Error()-0%100%
get_ETag()-0%100%
get_LastModified()-0%100%
get_Location()-0%100%
get_Status()-0%100%
get_TaskId()-0%100%
Microsoft.Azure.Batch.IModifiable.get_HasBeenModified()-0%100%
Microsoft.Azure.Batch.IReadOnly.get_IsReadOnly()-0%100%
Microsoft.Azure.Batch.IReadOnly.set_IsReadOnly(...)-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\AddTaskResult.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    using System;
 7    using System.Linq;
 8    using System.Text;
 9
 10    public partial class AddTaskResult
 11    {
 12        private readonly CloudTask task;
 13        private readonly int retryCount;
 14
 315        internal AddTaskResult(CloudTask task, int retryCount, Protocol.Models.TaskAddResult addTaskResult) : this(addTa
 16        {
 317            this.task = task;
 318            this.retryCount = retryCount;
 319        }
 20
 21        /// <summary>
 22        /// Gets details of the task.
 23        /// </summary>
 24        public CloudTask Task
 25        {
 126            get { return this.task; }
 327        }
 28
 429        /// <summary>
 330        /// Gets the number of times the Add Task operation was retried for this task.
 331        /// </summary>
 332        public int RetryCount
 333        {
 434            get { return this.retryCount; }
 335        }
 36
 37        //TODO: Code generate this?
 38        /// <summary>
 39        /// Returns a string that represents the current object.
 40        /// </summary>
 41        /// <returns>A string that represents the current object.</returns>
 42        public override string ToString()
 43        {
 1044            StringBuilder builder = new StringBuilder();
 45
 146            builder.Append($"TaskId={this.TaskId}");
 147            builder.Append($", Status={this.Status}");
 148            builder.Append($", Error.Code={this.Error?.Code}");
 249            builder.Append($", Error.Message={this.Error?.Message?.Value}");
 150            if (this.Error?.Values != null)
 51            {
 152                builder.AppendFormat(
 153                    System.Globalization.CultureInfo.CurrentCulture,
 354                    ", Error.Values=[{0}]", string.Join(", ", this.Error.Values.Select(value => $"{value.Key}={value.Val
 55            }
 56
 157            return builder.ToString();
 58        }
 159    };
 60
 61    /// <summary>
 62    /// Used by <see cref="AddTaskCollectionResultHandler"/> to classify an <see cref="AddTaskResult"/> as successful or
 63    /// requiring a retry.
 564    /// </summary>
 65    /// <remarks>AddTaskResultStatus is not used to report non-retryable failure; a result handler should throw
 66    /// <see cref="AddTaskCollectionTerminatedException"/> for that.</remarks>
 67    public enum AddTaskResultStatus
 68    {
 369        /// <summary>
 70        /// Classifies the result as a success.
 71        /// </summary>
 72        Success,
 73
 74        /// <summary>
 75        /// Classifies the result as requiring a retry.
 76        /// </summary>
 77        Retry
 078    }
 79}

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\AddTaskResult.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    /// Result for a single task added as part of a collection of tasks.
 22    /// </summary>
 23    public partial class AddTaskResult : IPropertyMetadata
 24    {
 25        #region Constructors
 26
 027        internal AddTaskResult(Models.TaskAddResult protocolObject)
 28        {
 029            this.Error = UtilitiesInternal.CreateObjectWithNullCheck(protocolObject.Error, o => new BatchError(o).Freeze
 030            this.ETag = protocolObject.ETag;
 031            this.LastModified = protocolObject.LastModified;
 032            this.Location = protocolObject.Location;
 033            this.Status = UtilitiesInternal.MapEnum<Models.TaskAddStatus, Common.AddTaskStatus>(protocolObject.Status);
 034            this.TaskId = protocolObject.TaskId;
 035        }
 36
 37        #endregion Constructors
 38
 39        #region AddTaskResult
 40
 41        /// <summary>
 42        /// Gets the error caught while attempting to add the task.
 43        /// </summary>
 044        public BatchError Error { get; }
 45
 46        /// <summary>
 47        /// Gets an ETag associated with a successfully added task.
 48        /// </summary>
 049        public string ETag { get; }
 50
 51        /// <summary>
 52        /// Gets the last modified time associated with a successfully added task.
 53        /// </summary>
 054        public DateTime? LastModified { get; }
 55
 56        /// <summary>
 57        /// Gets the URL of a successfully added task.
 58        /// </summary>
 059        public string Location { get; }
 60
 61        /// <summary>
 62        /// Gets the status of the add task request.
 63        /// </summary>
 064        public Common.AddTaskStatus Status { get; }
 65
 66        /// <summary>
 67        /// Gets the id of the task which this result applies to.
 68        /// </summary>
 069        public string TaskId { get; }
 70
 71        #endregion // AddTaskResult
 72
 73        #region IPropertyMetadata
 74
 75        bool IModifiable.HasBeenModified
 76        {
 77            //This class is compile time readonly so it cannot have been modified
 078            get { return false; }
 79        }
 80
 81        bool IReadOnly.IsReadOnly
 82        {
 083            get { return true; }
 84            set
 85            {
 86                // This class is compile time readonly already
 087            }
 88        }
 89
 90        #endregion // IPropertyMetadata
 91    }
 92}