/// <summary>
 /// Configure fake override of the Transport DeliveryCount with a constant count
 /// </summary>
 /// <param name="configurer"></param>
 /// <param name="count">Fixed count</param>
 public static void UseFakeDeliveryCount(this StandardConfigurer <ITransport> configurer, int count)
 {
     configurer.UseFakeDeliveryCount(() => count);
 }