public void Flush_DoesNothing()
 {
     using (var stream = new BlockingMemoryStream())
     {
         // Just to make sure this doesn't throw an exception or anything like that.
         stream.Flush();
     }
 }