public async Task Delete_Test()
        {
            var tenantId = Guid.NewGuid();

            using (_currentTenant.Change(tenantId, "test"))
            {
                var containerName = "b2b";
                var blobName      = "appsettings.json";
                var args          = new BlobProviderDeleteArgs(
                    containerName,
                    new BlobContainerConfiguration().UseTencentCloudCos(cos =>
                {
                    cos.AppId         = "";
                    cos.SecretId      = "";
                    cos.SecretKey     = "";
                    cos.ContainerName = "wei";
                    cos.Region        = EnumUtils.GetValue(CosRegion.AP_Guangzhou);
                }),
                    blobName
                    );
                var result = await _blob.DeleteAsync(args);

                Assert.False(result);
            }
        }