< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.BoundingBox
Assembly:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\BoundingBox.cs
Covered lines:6
Uncovered lines:7
Coverable lines:13
Total lines:85
Line coverage:46.1% (6 of 13)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Left()-100%100%
get_Top()-100%100%
get_Width()-100%100%
get_Height()-100%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\BoundingBox.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.Vision.CustomVision.Training.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Bounding box that defines a region of an image.
 18    /// </summary>
 19    public partial class BoundingBox
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the BoundingBox class.
 23        /// </summary>
 424        public BoundingBox()
 25        {
 26            CustomInit();
 427        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the BoundingBox class.
 31        /// </summary>
 32        /// <param name="left">Coordinate of the left boundary.</param>
 33        /// <param name="top">Coordinate of the top boundary.</param>
 34        /// <param name="width">Width.</param>
 35        /// <param name="height">Height.</param>
 036        public BoundingBox(double left, double top, double width, double height)
 37        {
 038            Left = left;
 039            Top = top;
 040            Width = width;
 041            Height = height;
 42            CustomInit();
 043        }
 44
 45        /// <summary>
 46        /// An initialization method that performs custom operations like setting defaults
 47        /// </summary>
 48        partial void CustomInit();
 49
 50        /// <summary>
 51        /// Gets or sets coordinate of the left boundary.
 52        /// </summary>
 53        [JsonProperty(PropertyName = "left")]
 1054        public double Left { get; set; }
 55
 56        /// <summary>
 57        /// Gets or sets coordinate of the top boundary.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "top")]
 1060        public double Top { get; set; }
 61
 62        /// <summary>
 63        /// Gets or sets width.
 64        /// </summary>
 65        [JsonProperty(PropertyName = "width")]
 1066        public double Width { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets height.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "height")]
 1072        public double Height { get; set; }
 73
 74        /// <summary>
 75        /// Validate the object.
 76        /// </summary>
 77        /// <exception cref="Rest.ValidationException">
 78        /// Thrown if validation fails
 79        /// </exception>
 80        public virtual void Validate()
 81        {
 82            //Nothing to validate
 083        }
 84    }
 85}