Skip to content

Instantly share code, notes, and snippets.

@nillfm
Last active June 20, 2017 13:10
Show Gist options
  • Save nillfm/def566d05a474c2914aa09c451a01932 to your computer and use it in GitHub Desktop.
Save nillfm/def566d05a474c2914aa09c451a01932 to your computer and use it in GitHub Desktop.
[TestFixture]
public class MyFancyClassTest
{
[SetUp]
public void Init()
{
_dataContext = new FakeDataContext();
AddData(_dataContext);
}
public class MethodOne
{
// tests
}
public class MethodTwo
{
// tests
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment