using System; using System.Collections.Generic; using System.Linq; using System.Text; using UnitTestSharp; namespace TestsForUnitTestSharp { public class IgnoreClassAttributeTests : TestFixture { [IgnoreFixture] public class IgnoreThisFixture : TestFixture { //This test should never get run public void Test() { Check(false); } } } }