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