< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models.ImageUrl
Assembly:Microsoft.Azure.CognitiveServices.Vision.ComputerVision
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\ImageUrl.cs
Covered lines:3
Uncovered lines:6
Coverable lines:9
Total lines:62
Line coverage:33.3% (3 of 9)
Covered branches:0
Total branches:2
Branch coverage:0% (0 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Url()-100%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\ImageUrl.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.ComputerVision.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Linq;
 16
 17    public partial class ImageUrl
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the ImageUrl class.
 21        /// </summary>
 2022        public ImageUrl()
 23        {
 24            CustomInit();
 2025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the ImageUrl class.
 29        /// </summary>
 30        /// <param name="url">Publicly reachable URL of an image.</param>
 031        public ImageUrl(string url)
 32        {
 033            Url = url;
 34            CustomInit();
 035        }
 36
 37        /// <summary>
 38        /// An initialization method that performs custom operations like setting defaults
 39        /// </summary>
 40        partial void CustomInit();
 41
 42        /// <summary>
 43        /// Gets or sets publicly reachable URL of an image.
 44        /// </summary>
 45        [JsonProperty(PropertyName = "url")]
 4046        public string Url { get; set; }
 47
 48        /// <summary>
 49        /// Validate the object.
 50        /// </summary>
 51        /// <exception cref="ValidationException">
 52        /// Thrown if validation fails
 53        /// </exception>
 54        public virtual void Validate()
 55        {
 056            if (Url == null)
 57            {
 058                throw new ValidationException(ValidationRules.CannotBeNull, "Url");
 59            }
 060        }
 61    }
 62}

Methods/Properties

.ctor()
.ctor(...)
get_Url()
Validate()