Exemple #1
0
 protected DomainTestBase(ITestOutputHelper output)
 {
     this.db     = new MemoryStream();
     this.Client = PizzaMasterApplication.Create()
                   .ConfigureLiteDb(this.db)
                   .Run();
 }
Exemple #2
0
 protected sealed override void BeginProcessing()
 {
     this.GetLog().StartLogging(this);
     try
     {
         this.Client = this.GetClient();
         this.BeginOverride();
     }
     catch (Exception)
     {
         this.GetLog().StopLogging(this);
         throw;
     }
 }