Skip to content

Instantly share code, notes, and snippets.

@rsyring
Created April 30, 2012 20:50
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 rsyring/2562557 to your computer and use it in GitHub Desktop.
Save rsyring/2562557 to your computer and use it in GitHub Desktop.
monodevelop nunit bug #4776
using System;
using NUnit.Framework;
using SomeProject.Tests.Utils;
namespace Some.Project.Tests {
[SetUpFixture]
public class DBInit {
[SetUp]
public void SetUp() {
Console.WriteLine("Assembly fixture ran");
UtilityClass.SetupCSConn();
}
}
[TestFixture]
public class MerchantTest {
[SetUp]
public void SetUp() {
// do some setup here
}
[Test]
public void Insert() {
// do some testing here
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment