Ejemplo n.º 1
0
        public StreamOutputListener ConstructorTest(Stream s, LogOptions options)
        {
            StreamOutputListener target = new StreamOutputListener(s, options);

            return(target);
            // TODO: add assertions to method StreamOutputListenerTest.ConstructorTest(Stream, LogOptions)
        }
Ejemplo n.º 2
0
 public void OutputTest(
     [PexAssumeUnderTest] StreamOutputListener target,
     DateTime when,
     OutputFlags flags,
     string text
     )
 {
     target.Output(when, flags, text);
     // TODO: add assertions to method StreamOutputListenerTest.OutputTest(StreamOutputListener, DateTime, OutputFlags, String)
 }
Ejemplo n.º 3
0
 public void DisposeTest([PexAssumeUnderTest] StreamOutputListener target)
 {
     target.Dispose();
     // TODO: add assertions to method StreamOutputListenerTest.DisposeTest(StreamOutputListener)
 }