Exemplo n.º 1
0
 public LambdaBootstrap(ILambdaRuntime runtime, IHandlerRunner runner)
 {
     _runtime = runtime;
     _runner  = runner;
 }
Exemplo n.º 2
0
 public LambdaBootstrapTests()
 {
     _runtime   = A.Fake <ILambdaRuntime>();
     _runner    = A.Fake <IHandlerRunner>();
     _bootstrap = new LambdaBootstrap(_runtime, _runner);
 }