public TheoryNode(TestTheory unit, CompositeNode parent) : base(unit, parent, new DefaultTestContext(parent.InitContext, unit))
 {
     _results   = new TestUnitResults(unit);
     _execution = new TheoryExecutionContext(this, InitContext, (TestTheory)Unit, null);
 }
 public DefaultNode(TestUnit unit, CompositeNode parent) : base(unit, parent, new DefaultTestContext(parent.InitContext, unit))
 {
     _results = new TestUnitResults(unit);
 }