Skip to content

Instantly share code, notes, and snippets.

@bittercoder
Created November 15, 2012 02:20
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 bittercoder/4076233 to your computer and use it in GitHub Desktop.
Save bittercoder/4076233 to your computer and use it in GitHub Desktop.
public namespace MyCompany.MyProject.MyFeature {
public class MySuite {
public MySuite() {
// SetupSomeTestData in here - but oh noi throw an error.
throw new Exception("bang!");
}
[Fact]
public void RunTest1() {
Alex Henderson: Assert.True(true);
}
[Fact]
public void RunTest2() {
Alex Henderson: Assert.True(true);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment