using UnitTestSharp; namespace TestsForUnitTestSharp { public class IgnoreTestAttributeTests : TestFixture { [IgnoreTest] void IgnoredTest() { Check(false); } public void TestHiddenMethodCount() { CheckEqual(0, HiddenTests); } public void TestIgnoredMethodCount() { CheckEqual(1, IgnoredMethods); } } }