< Summary

Class:Azure.Iot.Hub.Service.JobsClient
Assembly:Azure.Iot.Hub.Service
File(s):C:\Git\azure-sdk-for-net\sdk\iot\Azure.Iot.Hub.Service\src\JobsClient.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:25
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\iot\Azure.Iot.Hub.Service\src\JobsClient.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System;
 5using System.Collections.Generic;
 6using System.Text;
 7
 8namespace Azure.Iot.Hub.Service
 9{
 10    /// <summary>
 11    /// Jobs Client place holder
 12    /// </summary>
 13    public class JobsClient
 14    {
 15        /// <summary>
 16        /// place holder
 17        /// </summary>
 18#pragma warning disable AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect t
 7619        public JobsClient()
 20#pragma warning restore AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect t
 21        {
 22
 7623        }
 24    }
 25}

Methods/Properties

.ctor()