public void DoesNotThrowExceptionWhenClaimValueIsNull(string claimValue)
 {
     HttpProperties httpProperties = GetHttpProperties(true);
     var            args           = new KissLog.OptionsArgs.LogListenerClaimArgs(new CustomLogListener(), httpProperties, "claimType", claimValue);
 }
 public void ThrowsExceptionWhenHttpPropertiesIsNull()
 {
     var args = new KissLog.OptionsArgs.LogListenerClaimArgs(new CustomLogListener(), null, "claimType", "claimValue");
 }
 public void ThrowsExceptionWhenHttpPropertiesResponseIsNull()
 {
     HttpProperties httpProperties = GetHttpProperties(false);
     var            args           = new KissLog.OptionsArgs.LogListenerClaimArgs(new CustomLogListener(), httpProperties, "claimType", "claimValue");
 }
 public void ThrowsExceptionWhenListenerIsNull()
 {
     HttpProperties httpProperties = GetHttpProperties(true);
     var            args           = new KissLog.OptionsArgs.LogListenerClaimArgs(null, httpProperties, "claimType", "claimValue");
 }