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