Example #1
0
 public void ThrowsExceptionWhenHttpPropertiesIsNull()
 {
     var args = new KissLog.OptionsArgs.LogListenerInputStreamArgs(new CustomLogListener(), null);
 }
Example #2
0
 public void ThrowsExceptionWhenHttpPropertiesResponseIsNull()
 {
     HttpProperties httpProperties = GetHttpProperties(false);
     var            args           = new KissLog.OptionsArgs.LogListenerInputStreamArgs(new CustomLogListener(), httpProperties);
 }
Example #3
0
 public void ThrowsExceptionWhenListenerIsNull()
 {
     HttpProperties httpProperties = GetHttpProperties(true);
     var            args           = new KissLog.OptionsArgs.LogListenerInputStreamArgs(null, httpProperties);
 }