Skip to content

Instantly share code, notes, and snippets.

@Andrea
Created February 9, 2010 11:24
Show Gist options
  • Save Andrea/299110 to your computer and use it in GitHub Desktop.
Save Andrea/299110 to your computer and use it in GitHub Desktop.
public class MyClassTests
{
public class Given_a_context
{
[Fact]
public void When_somthing_happens_Then_result()
{
throw new NotImplementedException();
}
//...............
}
public class Given_a_different_context
{
[Fact]
public void When_somthing_happens_Then_result()
{
throw new NotImplementedException();
}
//...............
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment