Ejemplo n.º 1
0
 private static StatefulIteration CreateSut(IDoSomethingUseful doSomethingUseful = null)
 {
     doSomethingUseful ??= new DoSomethingUsefulDataBuilder().Build();
     return(new StatefulIteration(doSomethingUseful));
 }
Ejemplo n.º 2
0
 public StatefulIteration(IDoSomethingUseful doSomethingUseful)
 {
     _doSomethingUseful = doSomethingUseful;
 }
Ejemplo n.º 3
0
 public CustomIteration(IDoSomethingUseful doSomethingUseful)
 {
     _doSomethingUseful = doSomethingUseful;
 }