Skip to content

Instantly share code, notes, and snippets.

@simoneb
Created October 29, 2012 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save simoneb/3970719 to your computer and use it in GitHub Desktop.
Save simoneb/3970719 to your computer and use it in GitHub Desktop.
NUnitLite in LINQPad
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