< Summary

Class:Azure.Iot.Hub.Service.Models.DeviceStatus
Assembly:Azure.Iot.Hub.Service
File(s):C:\Git\azure-sdk-for-net\sdk\iot\Azure.Iot.Hub.Service\src\Generated\Models\DeviceStatus.cs
Covered lines:7
Uncovered lines:4
Coverable lines:11
Total lines:51
Line coverage:63.6% (7 of 11)
Covered branches:2
Total branches:6
Branch coverage:33.3% (2 of 6)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\iot\Azure.Iot.Hub.Service\src\Generated\Models\DeviceStatus.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.Iot.Hub.Service.Models
 12{
 13    /// <summary> The status of the device. If the status disabled, a device cannot connect to the service. </summary>
 14    public readonly partial struct DeviceStatus : IEquatable<DeviceStatus>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="DeviceStatus"/> values are the same. </summary>
 19        /// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception>
 20        public DeviceStatus(string value)
 21        {
 8422            _value = value ?? throw new ArgumentNullException(nameof(value));
 8423        }
 24
 25        private const string EnabledValue = "enabled";
 26        private const string DisabledValue = "disabled";
 27
 28        /// <summary> enabled. </summary>
 1429        public static DeviceStatus Enabled { get; } = new DeviceStatus(EnabledValue);
 30        /// <summary> disabled. </summary>
 3031        public static DeviceStatus Disabled { get; } = new DeviceStatus(DisabledValue);
 32        /// <summary> Determines if two <see cref="DeviceStatus"/> values are the same. </summary>
 033        public static bool operator ==(DeviceStatus left, DeviceStatus right) => left.Equals(right);
 34        /// <summary> Determines if two <see cref="DeviceStatus"/> values are not the same. </summary>
 035        public static bool operator !=(DeviceStatus left, DeviceStatus right) => !left.Equals(right);
 36        /// <summary> Converts a string to a <see cref="DeviceStatus"/>. </summary>
 037        public static implicit operator DeviceStatus(string value) => new DeviceStatus(value);
 38
 39        /// <inheritdoc />
 40        [EditorBrowsable(EditorBrowsableState.Never)]
 1241        public override bool Equals(object obj) => obj is DeviceStatus other && Equals(other);
 42        /// <inheritdoc />
 1243        public bool Equals(DeviceStatus other) => string.Equals(_value, other._value, StringComparison.InvariantCultureI
 44
 45        /// <inheritdoc />
 46        [EditorBrowsable(EditorBrowsableState.Never)]
 047        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 48        /// <inheritdoc />
 3249        public override string ToString() => _value;
 50    }
 51}