public MultiExpectProvider(CommandProviderList commandProviders)
 {
     this.commandProviders = commandProviders; // Easier than recomposing it for EnableExceptions() call, so storing it
     this.providers = commandProviders.Select(x => new KeyValuePair<IExpectProvider, ICommandProvider>(new ExpectProvider(x), x)).ToList();
 }
 public MultiExpectProvider(CommandProviderList commandProviders)
 {
     this.providers = commandProviders.Select(x => new KeyValuePair <IExpectProvider, ICommandProvider>(new ExpectProvider(x), x)).ToList();
 }
 public MultiExpectProvider(CommandProviderList commandProviders)
 {
     this.providers = commandProviders.Select(x => new KeyValuePair<IExpectProvider, ICommandProvider>(new ExpectProvider(x), x)).ToList();
 }
Esempio n. 4
0
 public MultiAssertProvider(CommandProviderList commandProviders)
 {
     this.commandProviders = commandProviders; // Easier than recomposing it for EnableExceptions() call, so storing it
     this.providers        = commandProviders.Select(x => new KeyValuePair <IAssertProvider, ICommandProvider>(new AssertProvider(x), x)).ToList();
 }