< Summary

Class:Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime.Models.ExternalEntity
Assembly:Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Runtime\src\Generated\Models\ExternalEntity.cs
Covered lines:9
Uncovered lines:8
Coverable lines:17
Total lines:103
Line coverage:52.9% (9 of 17)
Covered branches:1
Total branches:2
Branch coverage:50% (1 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_EntityName()-100%100%
get_StartIndex()-100%100%
get_EntityLength()-100%100%
get_Resolution()-100%100%
get_Score()-100%100%
Validate()-66.67%50%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Runtime\src\Generated\Models\ExternalEntity.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.Language.LUIS.Runtime.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Linq;
 16
 17    /// <summary>
 18    /// Defines a user predicted entity that extends an already existing one.
 19    /// </summary>
 20    public partial class ExternalEntity
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the ExternalEntity class.
 24        /// </summary>
 425        public ExternalEntity()
 26        {
 27            CustomInit();
 428        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the ExternalEntity class.
 32        /// </summary>
 33        /// <param name="entityName">The name of the entity to extend.</param>
 34        /// <param name="startIndex">The start character index of the predicted
 35        /// entity.</param>
 36        /// <param name="entityLength">The length of the predicted
 37        /// entity.</param>
 38        /// <param name="resolution">A user supplied custom resolution to
 39        /// return as the entity's prediction.</param>
 40        /// <param name="score">A user supplied score to return as the entity's
 41        /// prediction score.</param>
 042        public ExternalEntity(string entityName, int startIndex, int entityLength, object resolution = default(object), 
 43        {
 044            EntityName = entityName;
 045            StartIndex = startIndex;
 046            EntityLength = entityLength;
 047            Resolution = resolution;
 048            Score = score;
 49            CustomInit();
 050        }
 51
 52        /// <summary>
 53        /// An initialization method that performs custom operations like setting defaults
 54        /// </summary>
 55        partial void CustomInit();
 56
 57        /// <summary>
 58        /// Gets or sets the name of the entity to extend.
 59        /// </summary>
 60        [JsonProperty(PropertyName = "entityName")]
 1261        public string EntityName { get; set; }
 62
 63        /// <summary>
 64        /// Gets or sets the start character index of the predicted entity.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "startIndex")]
 867        public int StartIndex { get; set; }
 68
 69        /// <summary>
 70        /// Gets or sets the length of the predicted entity.
 71        /// </summary>
 72        [JsonProperty(PropertyName = "entityLength")]
 873        public int EntityLength { get; set; }
 74
 75        /// <summary>
 76        /// Gets or sets a user supplied custom resolution to return as the
 77        /// entity's prediction.
 78        /// </summary>
 79        [JsonProperty(PropertyName = "resolution")]
 880        public object Resolution { get; set; }
 81
 82        /// <summary>
 83        /// Gets or sets a user supplied score to return as the entity's
 84        /// prediction score.
 85        /// </summary>
 86        [JsonProperty(PropertyName = "score")]
 887        public double? Score { get; set; }
 88
 89        /// <summary>
 90        /// Validate the object.
 91        /// </summary>
 92        /// <exception cref="ValidationException">
 93        /// Thrown if validation fails
 94        /// </exception>
 95        public virtual void Validate()
 96        {
 497            if (EntityName == null)
 98            {
 099                throw new ValidationException(ValidationRules.CannotBeNull, "EntityName");
 100            }
 4101        }
 102    }
 103}