Exemplo n.º 1
0
 public void Test_BlobStream_Read()
 {
     string loremIpsum = LoremIpsum.OneThousandCharacters;
     FillCache(loremIpsum);
     BlobStream blobStream = new BlobStream(_cache, _key, _region);
     byte[] readBytes = new byte[loremIpsum.Length];
     blobStream.Read(readBytes, 0, readBytes.Length);
     Assert.AreEqual(LoremIpsum.OneThousandCharacters, Encoding.ASCII.GetString(readBytes));
 }