Ejemplo n.º 1
0
 public void ConstructorThrowsExceptionForNullTextFormatter()
 {
     var localTextFileListener = new LocalTextFileListener("logs");
     var listener = new MessageTextFileListener(localTextFileListener, null);
 }
Ejemplo n.º 2
0
 public void ConstructorThrowsExceptionForNullLocalTextFileListener()
 {
     ITextFormatter textFormatter = new Mock <ITextFormatter>().Object;
     var            listener      = new MessageTextFileListener(null, textFormatter);
 }