< Summary

Class:Azure.Storage.Queues.Specialized.Models.EncryptedMessage
Assembly:Azure.Storage.Queues
File(s):C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Queues\src\Models\EncryptedMessage.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:14
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_EncryptedMessageText()-100%100%
get_EncryptionData()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Queues\src\Models\EncryptedMessage.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using Azure.Storage.Cryptography.Models;
 5
 6namespace Azure.Storage.Queues.Specialized.Models
 7{
 8    internal class EncryptedMessage
 9    {
 3010        public string EncryptedMessageText { get; set; }
 11
 3012        public EncryptionData EncryptionData { get; set; }
 13    }
 14}