Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created July 19, 2017 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/05c89f488956e1b1f56724d879ef1367 to your computer and use it in GitHub Desktop.
Save justinyoo/05c89f488956e1b1f56724d879ef1367 to your computer and use it in GitHub Desktop.
Testing Serverless Applications - Part 1
public abstract class FunctionBase : IFunction
{
public IServiceLocator ServiceLocator { get; set; }
public virtual Task<HttpResponseMessage> InvokeAsync<TOptions>(HttpRequestMessage req, TOptions options = default(TOptions))
{
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment