< Summary

Class:Azure.AI.FormRecognizer.Training.TrainingOptions
Assembly:Azure.AI.FormRecognizer
File(s):C:\Git\azure-sdk-for-net\sdk\formrecognizer\Azure.AI.FormRecognizer\src\TrainingOptions.cs
Covered lines:3
Uncovered lines:0
Coverable lines:3
Total lines:24
Line coverage:100% (3 of 3)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
get_TrainingFileFilter()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\formrecognizer\Azure.AI.FormRecognizer\src\TrainingOptions.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4namespace Azure.AI.FormRecognizer.Training
 5{
 6    /// <summary>
 7    /// The set of options that can be specified when calling the training method
 8    /// to configure the behavior of the request.
 9    /// </summary>
 10    public class TrainingOptions
 11    {
 12        /// <summary>
 13        /// Initializes a new instance of the <see cref="TrainingOptions"/> class.
 14        /// </summary>
 14815        public TrainingOptions()
 16        {
 14817        }
 18
 19        /// <summary>
 20        /// Filter to apply to the documents in the source path for training.
 21        /// </summary>
 15622        public TrainingFileFilter TrainingFileFilter { get; set; }
 23    }
 24}

Methods/Properties

.ctor()
get_TrainingFileFilter()