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