Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created September 5, 2017 13:02
Show Gist options
  • Save justinyoo/5744655bf9a21d003de5f651b9402832 to your computer and use it in GitHub Desktop.
Save justinyoo/5744655bf9a21d003de5f651b9402832 to your computer and use it in GitHub Desktop.
Make Your Azure WebJobs Testable Again
public abstract class RegistrationHandler
{
public virtual bool IsRegistered { get; set; }
}
public class AutofacRegistrationHandler : RegistrationHandler
{
public Action<ContainerBuilder> RegisterModule { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment