Forum member

creade

2 posts

Posts by creade

  1. [TestFixtureSetUp] runs twice with [TestCase] and [Test]

    Hey Remco! Thanks for getting back. This makes perfect sense and I'm sorry I missed it being laid out so specifically in the docs!

  2. [TestFixtureSetUp] runs twice with [TestCase] and [Test]

    Hey all, We have a test file that looks something like the following: [code=csharp] using NUnit.Framework; namespace Tests.Unit { [TestFixture] public class Twice { private static bool initialized; [TestFixtureSetUp] public void Setup() { if (initiali…