Created
October 29, 2012 00:42
-
-
Save simoneb/3970719 to your computer and use it in GitHub Desktop.
NUnitLite in LINQPad
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
void Main() | |
{ | |
new NUnitLite.Runner.TextUI().Execute(new[]{"-noheader"}); | |
} | |
// Define other methods and classes here | |
[Test] | |
public void SomeTest() | |
{ | |
Assert.Pass(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment