< Summary

Class:Azure.ResourceManager.AppConfiguration.Models.ConnectionStatus
Assembly:Azure.ResourceManager.AppConfiguration
File(s):C:\Git\azure-sdk-for-net\sdk\appconfiguration\Azure.ResourceManager.AppConfiguration\src\Generated\Models\ConnectionStatus.cs
Covered lines:4
Uncovered lines:9
Coverable lines:13
Total lines:56
Line coverage:30.7% (4 of 13)
Covered branches:1
Total branches:6
Branch coverage:16.6% (1 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%50%
get_Pending()-0%100%
get_Approved()-100%100%
get_Rejected()-0%100%
get_Disconnected()-0%100%
op_Equality(...)-0%100%
op_Inequality(...)-0%100%
op_Implicit(...)-0%100%
Equals(...)-0%0%
Equals(...)-0%100%
GetHashCode()-0%0%
ToString()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\appconfiguration\Azure.ResourceManager.AppConfiguration\src\Generated\Models\ConnectionStatus.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.AppConfiguration.Models
 12{
 13    /// <summary> The private link service connection status. </summary>
 14    public readonly partial struct ConnectionStatus : IEquatable<ConnectionStatus>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="ConnectionStatus"/> values are the same. </summary>
 19        public ConnectionStatus(string value)
 20        {
 3621            _value = value ?? throw new ArgumentNullException(nameof(value));
 3622        }
 23
 24        private const string PendingValue = "Pending";
 25        private const string ApprovedValue = "Approved";
 26        private const string RejectedValue = "Rejected";
 27        private const string DisconnectedValue = "Disconnected";
 28
 29        /// <summary> Pending. </summary>
 030        public static ConnectionStatus Pending { get; } = new ConnectionStatus(PendingValue);
 31        /// <summary> Approved. </summary>
 632        public static ConnectionStatus Approved { get; } = new ConnectionStatus(ApprovedValue);
 33        /// <summary> Rejected. </summary>
 034        public static ConnectionStatus Rejected { get; } = new ConnectionStatus(RejectedValue);
 35        /// <summary> Disconnected. </summary>
 036        public static ConnectionStatus Disconnected { get; } = new ConnectionStatus(DisconnectedValue);
 37        /// <summary> Determines if two <see cref="ConnectionStatus"/> values are the same. </summary>
 038        public static bool operator ==(ConnectionStatus left, ConnectionStatus right) => left.Equals(right);
 39        /// <summary> Determines if two <see cref="ConnectionStatus"/> values are not the same. </summary>
 040        public static bool operator !=(ConnectionStatus left, ConnectionStatus right) => !left.Equals(right);
 41        /// <summary> Converts a string to a <see cref="ConnectionStatus"/>. </summary>
 042        public static implicit operator ConnectionStatus(string value) => new ConnectionStatus(value);
 43
 44        /// <inheritdoc />
 45        [EditorBrowsable(EditorBrowsableState.Never)]
 046        public override bool Equals(object obj) => obj is ConnectionStatus other && Equals(other);
 47        /// <inheritdoc />
 048        public bool Equals(ConnectionStatus other) => string.Equals(_value, other._value, StringComparison.InvariantCult
 49
 50        /// <inheritdoc />
 51        [EditorBrowsable(EditorBrowsableState.Never)]
 052        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 53        /// <inheritdoc />
 854        public override string ToString() => _value;
 55    }
 56}