Skip to content

Instantly share code, notes, and snippets.

@Turtlator
Created April 11, 2013 11:07
Show Gist options
  • Select an option

  • Save Turtlator/5362526 to your computer and use it in GitHub Desktop.

Select an option

Save Turtlator/5362526 to your computer and use it in GitHub Desktop.
Testing genius
<TestMethod()>
Public Sub TestPushTooMany()
Dim stack As Stack(Of Double) = New Stack(Of Double)(1)
Try
stack.Push(123.456)
stack.Push(89.123)
Assert.Fail("Should not reach this point")
Catch ex As Exception
End Try
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment