< Summary

Class:Azure.ResourceManager.Storage.Models.LeaseState
Assembly:Azure.ResourceManager.Storage
File(s):C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\LeaseState.cs
Covered lines:2
Uncovered lines:12
Coverable lines:14
Total lines:59
Line coverage:14.2% (2 of 14)
Covered branches:1
Total branches:6
Branch coverage:16.6% (1 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%50%
get_Available()-0%100%
get_Leased()-0%100%
get_Expired()-0%100%
get_Breaking()-0%100%
get_Broken()-0%100%
op_Equality(...)-0%100%
op_Inequality(...)-0%100%
op_Implicit(...)-0%100%
Equals(...)-0%0%
Equals(...)-0%100%
GetHashCode()-0%0%
ToString()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\storage\Azure.ResourceManager.Storage\src\Generated\Models\LeaseState.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8using System;
 9using System.ComponentModel;
 10
 11namespace Azure.ResourceManager.Storage.Models
 12{
 13    /// <summary> Lease state of the container. </summary>
 14    public readonly partial struct LeaseState : IEquatable<LeaseState>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="LeaseState"/> values are the same. </summary>
 19        public LeaseState(string value)
 20        {
 3621            _value = value ?? throw new ArgumentNullException(nameof(value));
 3622        }
 23
 24        private const string AvailableValue = "Available";
 25        private const string LeasedValue = "Leased";
 26        private const string ExpiredValue = "Expired";
 27        private const string BreakingValue = "Breaking";
 28        private const string BrokenValue = "Broken";
 29
 30        /// <summary> Available. </summary>
 031        public static LeaseState Available { get; } = new LeaseState(AvailableValue);
 32        /// <summary> Leased. </summary>
 033        public static LeaseState Leased { get; } = new LeaseState(LeasedValue);
 34        /// <summary> Expired. </summary>
 035        public static LeaseState Expired { get; } = new LeaseState(ExpiredValue);
 36        /// <summary> Breaking. </summary>
 037        public static LeaseState Breaking { get; } = new LeaseState(BreakingValue);
 38        /// <summary> Broken. </summary>
 039        public static LeaseState Broken { get; } = new LeaseState(BrokenValue);
 40        /// <summary> Determines if two <see cref="LeaseState"/> values are the same. </summary>
 041        public static bool operator ==(LeaseState left, LeaseState right) => left.Equals(right);
 42        /// <summary> Determines if two <see cref="LeaseState"/> values are not the same. </summary>
 043        public static bool operator !=(LeaseState left, LeaseState right) => !left.Equals(right);
 44        /// <summary> Converts a string to a <see cref="LeaseState"/>. </summary>
 045        public static implicit operator LeaseState(string value) => new LeaseState(value);
 46
 47        /// <inheritdoc />
 48        [EditorBrowsable(EditorBrowsableState.Never)]
 049        public override bool Equals(object obj) => obj is LeaseState other && Equals(other);
 50        /// <inheritdoc />
 051        public bool Equals(LeaseState other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgn
 52
 53        /// <inheritdoc />
 54        [EditorBrowsable(EditorBrowsableState.Never)]
 055        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 56        /// <inheritdoc />
 057        public override string ToString() => _value;
 58    }
 59}