public SetKeyVaultSecretAttributeTests()
        {
            base.SetupTest();

            secretAttributes = new PSKeyVaultSecretAttributes(true, DateTime.UtcNow.AddYears(2), DateTime.UtcNow, "contenttype", null);
            secret           = new PSKeyVaultSecret()
            {
                VaultName = VaultName, Name = SecretName, Version = SecretVersion, SecretValue = null, Attributes = secretAttributes
            };

            cmdlet = new SetAzureKeyVaultSecretAttribute()
            {
                CommandRuntime    = commandRuntimeMock.Object,
                DataServiceClient = keyVaultClientMock.Object,
                VaultName         = secret.VaultName,
                Name        = secret.Name,
                Version     = secret.Version,
                Enable      = secretAttributes.Enabled,
                Expires     = secretAttributes.Expires,
                NotBefore   = secretAttributes.NotBefore,
                ContentType = secretAttributes.ContentType,
                Tag         = secretAttributes.Tags,
                PassThru    = true
            };
        }
        public SetKeyVaultSecretAttributeTests()
        {
            base.SetupTest();

            secretAttributes = new SecretAttributes(true, DateTime.UtcNow.AddYears(2), DateTime.UtcNow, "contenttype", null);
            secret = new Secret() { VaultName = VaultName, Name = SecretName, Version = SecretVersion, SecretValue = null, Attributes = secretAttributes };

            cmdlet = new SetAzureKeyVaultSecretAttribute()
            {
                CommandRuntime = commandRuntimeMock.Object,
                DataServiceClient = keyVaultClientMock.Object,
                VaultName = secret.VaultName,
                Name = secret.Name,
                Version = secret.Version,
                Enable = secretAttributes.Enabled,
                Expires = secretAttributes.Expires,
                NotBefore = secretAttributes.NotBefore,
                ContentType = secretAttributes.ContentType,
                Tags = secretAttributes.Tags,
                PassThru = true
            };
        }