Ejemplo n.º 1
0
 public WriteCall(string format, WriteSource source)
 {
     if (source == WriteSource.WriteLineEmpty)
     {
         Assert.IsNull(format);
     }
     else
     {
         Assert.IsNotNull(format);
     }
     Format = format;
     Source = source;
 }
Ejemplo n.º 2
0
 private void AddWriteCall(string format, WriteSource source)
 {
     _actualWriteCalls.Add(new WriteCall(format, source));
 }