Example #1
0
 public void TestGetBlobLength()
 {
     using (NativeRunner runner = new NativeRunner(HOST, PORT))
     {
         runner.PutBlob("_tmp", new byte[10]);
         Assert.AreEqual(10, runner.GetBlobLength("_tmp"));
     }
 }