Exemplo n.º 1
0
 protected internal FluentAssertionsThenBuilder(IThenBuilder <TContext> thenBuilder) =>
 public static ShouldlyThenBuilder <TContext> Then <TContext>(
     this IThenBuilder <TContext> thenBuilder) =>
 new ShouldlyThenBuilder <TContext>(thenBuilder);
 protected internal ShouldlyThenBuilder(IThenBuilder <TContext> thenBuilder) =>
 public static FluentAssertionsThenBuilder <TContext> Then <TContext>(
     this IThenBuilder <TContext> thenBuilder) =>
 new FluentAssertionsThenBuilder <TContext>(thenBuilder);
Exemplo n.º 5
0
 public ShouldlyThenBuilder(IThenBuilder <TFixture> thenBuilder)
 {
     _thenContinuationBuilder = thenBuilder.GetContinuationBuilder();
 }
Exemplo n.º 6
0
 public static ShouldlyThenBuilder <TFixture> Then <TFixture>(this IThenBuilder <TFixture> thenBuilder)
 {
     return(new ShouldlyThenBuilder <TFixture>(thenBuilder));
 }