< Summary

Class:Azure.DigitalTwins.Core.ModelsConstants
Assembly:Azure.DigitalTwins.Core
File(s):C:\Git\azure-sdk-for-net\sdk\digitaltwins\Azure.DigitalTwins.Core\src\Models\ModelsConstants.cs
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:18
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.cctor()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\digitaltwins\Azure.DigitalTwins.Core\src\Models\ModelsConstants.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System.Collections.Generic;
 5
 6namespace Azure.DigitalTwins.Core
 7{
 8    /// <summary>
 9    /// Constants useful for use with the digital twins client.
 10    /// </summary>
 11    internal static class ModelsConstants
 12    {
 13        /// <summary>
 14        /// The application/json-patch+json operation to decommission a model.
 15        /// </summary>
 216        internal static readonly IEnumerable<string> DecommissionModelOperationList = new[] { @"{ ""op"": ""replace"", "
 17    }
 18}

Methods/Properties

.cctor()