Пример #1
0
 public TheoryExecutionContext(CompositeNode node, TestContext parent, TestTheory self, object testObject)
     : base(node, parent, self, testObject)
 {
 }
Пример #2
0
 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);
 }