public void RunBeforeAnyTests()
 {
     using (var scope = Container.BeginLifetimeScope())
     {
         // When processor is resolved, it'll have all of the
         // registered handlers passed in to the constructor.
         sut = scope.Resolve<PracticumOrderProcessor>();
     }
 }
 public void RunBeforeAnyTests()
 {
     using (var scope = Container.BeginLifetimeScope())
     {
         sut = scope.Resolve<PracticumOrderProcessor>();
     }
 }