public void DoesNotThrowExceptionWhenCookieValueIsNull(string cookieValue)
 {
     HttpProperties httpProperties = GetHttpProperties(true);
     var            args           = new KissLog.OptionsArgs.LogListenerCookieArgs(new CustomLogListener(), httpProperties, "cookieName", cookieValue);
 }
 public void ThrowsExceptionWhenHttpPropertiesIsNull()
 {
     var args = new KissLog.OptionsArgs.LogListenerCookieArgs(new CustomLogListener(), null, "cookieName", "cookieValue");
 }
 public void ThrowsExceptionWhenHttpPropertiesResponseIsNull()
 {
     HttpProperties httpProperties = GetHttpProperties(false);
     var            args           = new KissLog.OptionsArgs.LogListenerCookieArgs(new CustomLogListener(), httpProperties, "cookieName", "cookieValue");
 }
 public void ThrowsExceptionWhenListenerIsNull()
 {
     HttpProperties httpProperties = GetHttpProperties(true);
     var            args           = new KissLog.OptionsArgs.LogListenerCookieArgs(null, httpProperties, "cookieName", "cookieValue");
 }