< Summary

Class:Azure.Data.Tables.Models.TableGeoReplicationStatus
Assembly:Azure.Data.Tables
File(s):C:\Git\azure-sdk-for-net\sdk\tables\Azure.Data.Tables\src\Generated\Models\TableGeoReplicationStatus.cs
Covered lines:3
Uncovered lines:9
Coverable lines:12
Total lines:54
Line coverage:25% (3 of 12)
Covered branches:1
Total branches:6
Branch coverage:16.6% (1 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%50%
get_Live()-0%100%
get_Bootstrap()-0%100%
get_Unavailable()-0%100%
op_Equality(...)-0%100%
op_Inequality(...)-0%100%
op_Implicit(...)-0%100%
Equals(...)-0%0%
Equals(...)-100%100%
GetHashCode()-0%0%
ToString()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\tables\Azure.Data.Tables\src\Generated\Models\TableGeoReplicationStatus.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.Data.Tables.Models
 12{
 13    /// <summary> The status of the secondary location. </summary>
 14    public readonly partial struct TableGeoReplicationStatus : IEquatable<TableGeoReplicationStatus>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="TableGeoReplicationStatus"/> values are the same. </summary>
 19        /// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception>
 20        public TableGeoReplicationStatus(string value)
 21        {
 822            _value = value ?? throw new ArgumentNullException(nameof(value));
 823        }
 24
 25        private const string LiveValue = "live";
 26        private const string BootstrapValue = "bootstrap";
 27        private const string UnavailableValue = "unavailable";
 28
 29        /// <summary> live. </summary>
 030        public static TableGeoReplicationStatus Live { get; } = new TableGeoReplicationStatus(LiveValue);
 31        /// <summary> bootstrap. </summary>
 032        public static TableGeoReplicationStatus Bootstrap { get; } = new TableGeoReplicationStatus(BootstrapValue);
 33        /// <summary> unavailable. </summary>
 034        public static TableGeoReplicationStatus Unavailable { get; } = new TableGeoReplicationStatus(UnavailableValue);
 35        /// <summary> Determines if two <see cref="TableGeoReplicationStatus"/> values are the same. </summary>
 036        public static bool operator ==(TableGeoReplicationStatus left, TableGeoReplicationStatus right) => left.Equals(r
 37        /// <summary> Determines if two <see cref="TableGeoReplicationStatus"/> values are not the same. </summary>
 038        public static bool operator !=(TableGeoReplicationStatus left, TableGeoReplicationStatus right) => !left.Equals(
 39        /// <summary> Converts a string to a <see cref="TableGeoReplicationStatus"/>. </summary>
 040        public static implicit operator TableGeoReplicationStatus(string value) => new TableGeoReplicationStatus(value);
 41
 42        /// <inheritdoc />
 43        [EditorBrowsable(EditorBrowsableState.Never)]
 044        public override bool Equals(object obj) => obj is TableGeoReplicationStatus other && Equals(other);
 45        /// <inheritdoc />
 446        public bool Equals(TableGeoReplicationStatus other) => string.Equals(_value, other._value, StringComparison.Inva
 47
 48        /// <inheritdoc />
 49        [EditorBrowsable(EditorBrowsableState.Never)]
 050        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 51        /// <inheritdoc />
 052        public override string ToString() => _value;
 53    }
 54}