protected void SetDebugMode(SWATFixture fixture, bool mode)
 {
     ReflectionHelper.SetField(fixture, "InDebugMode", mode);
 }
        public void TestSWATFixture()
        {
            SWAT.Fitnesse.SWATFixture testing = new SWATFixture();

            bool value = false;
            if (testing is SWATFixture)
                value = true;

            Assert.IsTrue(value, "SWAT Fixtures are not being constructed propertly");
        }