Ejemplo n.º 1
0
 public void EnsureLengthThrowsOnNegativeValue()
 {
     using (StreamBuffer buffer = new StreamBuffer())
     {
         Action action = () => buffer.EnsureLength(-1);
         action.ShouldThrow<ArgumentOutOfRangeException>();
     }
 }