Exemplo n.º 1
0
 public static void Scenario <T1, T2>(T1 w, T2 x, T1 y, T2 z)
 {
     "Given {0}, {1}, {2} and {3}"
     .Given(() => ArgumentLists.Push(new object[] { w, x, y, z }));
 }
Exemplo n.º 2
0
 public static ArgumentList List(
     IEnumerable <EntityConstructorProperty> arguments)
 => ArgumentLists.Create(
     arguments.Select(argument => Argument(argument)).ToArray());
Exemplo n.º 3
0
 public static void Scenario(int w, int x, int y, int z)
 {
     "Given {0}, {1}, {2} and {3}"
     .Given(() => ArgumentLists.Push(new object[] { w, x, y, z }));
 }