< Summary

Class:Azure.Data.AppConfiguration.SettingBatch
Assembly:Azure.Data.AppConfiguration
File(s):C:\Git\azure-sdk-for-net\sdk\appconfiguration\Azure.Data.AppConfiguration\src\SettingBatch.cs
Covered lines:6
Uncovered lines:0
Coverable lines:6
Total lines:18
Line coverage:100% (6 of 6)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\appconfiguration\Azure.Data.AppConfiguration\src\SettingBatch.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4namespace Azure.Data.AppConfiguration
 5{
 6    internal class SettingBatch
 7    {
 1088        internal SettingBatch(ConfigurationSetting[] settings, string link)
 9        {
 10810            Settings = settings;
 10811            NextBatchLink = link;
 10812        }
 13
 10814        public string NextBatchLink { get; }
 15
 10816        public ConfigurationSetting[] Settings { get; }
 17    }
 18}