public ActiveExampleContainer(string name, ExampleContainer parent, Spec spec) : base(name, parent, spec) { }
public Example(string name, Expression<Func<bool>> spec, ExampleContainer parent, Spec containingSpec) : base(parent, name, containingSpec) { Name = name; _action = BuildAction(spec); }
protected ExampleContainer(string name, ExampleContainer parent, Spec spec) : base(parent, name, spec) { ContainingSpec = spec; }
public Example(string name, Action action, ExampleContainer parent, Spec spec) : base(parent, name, spec) { _action = action; }
protected ExampleNode(ExampleContainer parent, string name, Spec spec) { Parent = parent; Name = name; ContainingSpec = spec; }