using System.Threading; using MbUnit.Framework; // DependsOn don't work namespace SampleTests.Issue16 { [TestFixture] public class ParentTest { [Test] public void SomeParentTest() { Thread.Sleep(1000); Assert.IsTrue(true); // breakpoint here } } [TestFixture] [DependsOn(typeof(ParentTest))] public class ChildTest { [Test] public void SomeChildTest() { Thread.Sleep(1000); Assert.IsTrue(true); // breakpoint here } } [TestFixture] [DependsOn(typeof(ChildTest))] class SubChildTest { [Test] public void SomeSubChildTest() { Thread.Sleep(1000); Assert.IsTrue(true); // breakpoint here } } }