Skip to content

Instantly share code, notes, and snippets.

@JohannesRudolph
Created September 29, 2010 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohannesRudolph/603560 to your computer and use it in GitHub Desktop.
Save JohannesRudolph/603560 to your computer and use it in GitHub Desktop.
var spec = from sut in SpecificationExpression.Begin(() => new Stack<int>())
where sut.Push(element)
select new Observations()
{
() => Assert.NotEmpty(sut),
() => Assert.Equal(element, sut.Peek())
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment