< Summary

Class:Azure.ResourceManager.Compute.Models.OrchestrationServiceState
Assembly:Azure.ResourceManager.Compute
File(s):C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\OrchestrationServiceState.cs
Covered lines:5
Uncovered lines:7
Coverable lines:12
Total lines:53
Line coverage:41.6% (5 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_NotRunning()-0%100%
get_Running()-100%100%
get_Suspended()-100%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\compute\Azure.ResourceManager.Compute\src\Generated\Models\OrchestrationServiceState.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.Compute.Models
 12{
 13    /// <summary> The current state of the service. </summary>
 14    public readonly partial struct OrchestrationServiceState : IEquatable<OrchestrationServiceState>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="OrchestrationServiceState"/> values are the same. </summary>
 19        public OrchestrationServiceState(string value)
 20        {
 1821            _value = value ?? throw new ArgumentNullException(nameof(value));
 1822        }
 23
 24        private const string NotRunningValue = "NotRunning";
 25        private const string RunningValue = "Running";
 26        private const string SuspendedValue = "Suspended";
 27
 28        /// <summary> NotRunning. </summary>
 029        public static OrchestrationServiceState NotRunning { get; } = new OrchestrationServiceState(NotRunningValue);
 30        /// <summary> Running. </summary>
 631        public static OrchestrationServiceState Running { get; } = new OrchestrationServiceState(RunningValue);
 32        /// <summary> Suspended. </summary>
 633        public static OrchestrationServiceState Suspended { get; } = new OrchestrationServiceState(SuspendedValue);
 34        /// <summary> Determines if two <see cref="OrchestrationServiceState"/> values are the same. </summary>
 035        public static bool operator ==(OrchestrationServiceState left, OrchestrationServiceState right) => left.Equals(r
 36        /// <summary> Determines if two <see cref="OrchestrationServiceState"/> values are not the same. </summary>
 037        public static bool operator !=(OrchestrationServiceState left, OrchestrationServiceState right) => !left.Equals(
 38        /// <summary> Converts a string to a <see cref="OrchestrationServiceState"/>. </summary>
 039        public static implicit operator OrchestrationServiceState(string value) => new OrchestrationServiceState(value);
 40
 41        /// <inheritdoc />
 42        [EditorBrowsable(EditorBrowsableState.Never)]
 043        public override bool Equals(object obj) => obj is OrchestrationServiceState other && Equals(other);
 44        /// <inheritdoc />
 045        public bool Equals(OrchestrationServiceState other) => string.Equals(_value, other._value, StringComparison.Inva
 46
 47        /// <inheritdoc />
 48        [EditorBrowsable(EditorBrowsableState.Never)]
 049        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 50        /// <inheritdoc />
 2051        public override string ToString() => _value;
 52    }
 53}