Created
November 15, 2012 02:20
-
-
Save bittercoder/4076233 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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