Skip to content

Instantly share code, notes, and snippets.

@akimboyko
Created October 25, 2012 14:14
Show Gist options
  • Save akimboyko/3952783 to your computer and use it in GitHub Desktop.
Save akimboyko/3952783 to your computer and use it in GitHub Desktop.
Simple unittest for LinqPad
void Main()
{
// add references: nunit.framework.dll and nunit-console-runner.dll
// nunit runner
NUnit.ConsoleRunner.Runner.Main(new string[]
{
Assembly.GetExecutingAssembly().Location,
});
}
[TestFixture]
public class TestFixture
{
[Test]
public void SimplePassedTest()
{
Assert.Pass("ok");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment