< Summary

Class:Microsoft.Azure.Search.Models.LengthTokenFilter
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\LengthTokenFilter.cs
Covered lines:12
Uncovered lines:2
Coverable lines:14
Total lines:92
Line coverage:85.7% (12 of 14)
Covered branches:2
Total branches:4
Branch coverage:50% (2 of 4)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-100%100%
get_Min()-100%100%
get_Max()-100%100%
Validate()-66.67%50%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\LengthTokenFilter.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.Search.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Linq;
 16
 17    /// <summary>
 18    /// Removes words that are too long or too short. This token filter is
 19    /// implemented using Apache Lucene.
 20    /// <see
 21    /// href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LengthFilte
 22    /// />
 23    /// </summary>
 24    [Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.LengthTokenFilter")]
 25    public partial class LengthTokenFilter : TokenFilter
 26    {
 27        /// <summary>
 28        /// Initializes a new instance of the LengthTokenFilter class.
 29        /// </summary>
 430        public LengthTokenFilter()
 31        {
 32            CustomInit();
 433        }
 34
 35        /// <summary>
 36        /// Initializes a new instance of the LengthTokenFilter class.
 37        /// </summary>
 38        /// <param name="name">The name of the token filter. It must only
 39        /// contain letters, digits, spaces, dashes or underscores, can only
 40        /// start and end with alphanumeric characters, and is limited to 128
 41        /// characters.</param>
 42        /// <param name="min">The minimum length in characters. Default is 0.
 43        /// Maximum is 300. Must be less than the value of max.</param>
 44        /// <param name="max">The maximum length in characters. Default and
 45        /// maximum is 300.</param>
 46        public LengthTokenFilter(string name, int? min = default(int?), int? max = default(int?))
 647            : base(name)
 48        {
 649            Min = min;
 650            Max = max;
 51            CustomInit();
 652        }
 53
 54        /// <summary>
 55        /// An initialization method that performs custom operations like setting defaults
 56        /// </summary>
 57        partial void CustomInit();
 58
 59        /// <summary>
 60        /// Gets or sets the minimum length in characters. Default is 0.
 61        /// Maximum is 300. Must be less than the value of max.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "min")]
 2664        public int? Min { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets the maximum length in characters. Default and maximum
 68        /// is 300.
 69        /// </summary>
 70        [JsonProperty(PropertyName = "max")]
 2671        public int? Max { get; set; }
 72
 73        /// <summary>
 74        /// Validate the object.
 75        /// </summary>
 76        /// <exception cref="ValidationException">
 77        /// Thrown if validation fails
 78        /// </exception>
 79        public override void Validate()
 80        {
 481            base.Validate();
 482            if (Min > 300)
 83            {
 084                throw new ValidationException(ValidationRules.InclusiveMaximum, "Min", 300);
 85            }
 486            if (Max > 300)
 87            {
 088                throw new ValidationException(ValidationRules.InclusiveMaximum, "Max", 300);
 89            }
 490        }
 91    }
 92}