Azure.Storage.Tests.BlobStorageTests.CreateBlobFromBytesSucceeds C# (CSharp) Method

CreateBlobFromBytesSucceeds() private method

private CreateBlobFromBytesSucceeds ( ) : void
return void
        public void CreateBlobFromBytesSucceeds()
        {
            const string streamBlob = "streamblob";
            var bytes = Encoding.UTF8.GetBytes("hello world");
            var result = blobStorage.CreateBlockBlob(streamBlob, "text/plain", bytes);

            Assert.NotNull(result);
        }