Tracks the exceptions that have occurred in user code while processing a message
 public void Exception_Count_Increment()
 {
     var test = new RedisErrorTracking();
     test.IncrementExceptionCount("test");
     var value = test.GetExceptionCount("test");
     Assert.Equal(1, value);
     value = test.GetExceptionCount("test_no_value");
     Assert.Equal(0, value);
     test.IncrementExceptionCount("test");
     value = test.GetExceptionCount("test");
     Assert.Equal(2, value);
 }
 public void Exception_Count_Zero_Default()
 {
     var test = new RedisErrorTracking();
     var value = test.GetExceptionCount("test");
     Assert.Equal(0, value);
 }