Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Last active September 4, 2017 16:49
Show Gist options
  • Save justinyoo/cbac6af4462355666dd58e3328543a70 to your computer and use it in GitHub Desktop.
Save justinyoo/cbac6af4462355666dd58e3328543a70 to your computer and use it in GitHub Desktop.
Make Your Azure WebJobs Testable Again
public static class Functions
{
// WebJob function has the "static" modifier.
public static void ProcessQueueMessage([QueueTrigger("queue")] string message, TextWriter log)
{
log.WriteLine(message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment