< Summary

Class:Microsoft.Azure.CognitiveServices.Personalizer.Models.PolicyResult
Assembly:Microsoft.Azure.CognitiveServices.Personalizer
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Personalizer\src\Generated\Models\PolicyResult.cs
Covered lines:2
Uncovered lines:10
Coverable lines:12
Total lines:66
Line coverage:16.6% (2 of 12)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Name()-0%100%
get_Arguments()-0%100%
get_Summary()-0%100%
get_TotalSummary()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Personalizer\src\Generated\Models\PolicyResult.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.CognitiveServices.Personalizer.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    public partial class PolicyResult
 19    {
 20        /// <summary>
 21        /// Initializes a new instance of the PolicyResult class.
 22        /// </summary>
 13823        public PolicyResult()
 24        {
 25            CustomInit();
 13826        }
 27
 28        /// <summary>
 29        /// Initializes a new instance of the PolicyResult class.
 30        /// </summary>
 031        public PolicyResult(string name = default(string), string arguments = default(string), IList<PolicyResultSummary
 32        {
 033            Name = name;
 034            Arguments = arguments;
 035            Summary = summary;
 036            TotalSummary = totalSummary;
 37            CustomInit();
 038        }
 39
 40        /// <summary>
 41        /// An initialization method that performs custom operations like setting defaults
 42        /// </summary>
 43        partial void CustomInit();
 44
 45        /// <summary>
 46        /// </summary>
 47        [JsonProperty(PropertyName = "name")]
 048        public string Name { get; private set; }
 49
 50        /// <summary>
 51        /// </summary>
 52        [JsonProperty(PropertyName = "arguments")]
 053        public string Arguments { get; private set; }
 54
 55        /// <summary>
 56        /// </summary>
 57        [JsonProperty(PropertyName = "summary")]
 058        public IList<PolicyResultSummary> Summary { get; private set; }
 59
 60        /// <summary>
 61        /// </summary>
 62        [JsonProperty(PropertyName = "totalSummary")]
 063        public PolicyResultTotalSummary TotalSummary { get; private set; }
 64
 65    }
 66}