Example #1
0
 public void Stack_CopyTo_ArgumentException_Test()
 {
     int[] intArray = new int[2];
     Assert.That(() => stack.CopyTo(intArray, 1), Throws.TypeOf <ArgumentException>());
 }