// http://code.google.com/p/mbunit-resharper/issues/detail?id=8 using MbUnit.Framework; namespace SampleTests { [TestFixture] public class TestForIssue8 { [Test] public void ThisTestIsVisible() { Assert.IsTrue(true); } [Test("Description that hides Test")] public void ThisTestIsNotVisible() { Assert.IsTrue(true); } } }