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