< Summary

Class:Azure.Core.TestFramework.ServiceVersionAttribute
Assembly:Azure.Core.TestFramework
File(s):C:\Git\azure-sdk-for-net\sdk\core\Azure.Core.TestFramework\src\ServiceVersionAttribute.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:15
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_Min()-100%100%
get_Max()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\core\Azure.Core.TestFramework\src\ServiceVersionAttribute.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System;
 5using NUnit.Framework;
 6
 7namespace Azure.Core.TestFramework
 8{
 9    [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
 10    public class ServiceVersionAttribute : NUnitAttribute
 11    {
 1012612        public object Min { get; set; }
 21613        public object Max { get; set; }
 14    }
 15}

Methods/Properties

get_Min()
get_Max()