Automata.Tests.MyTestContext.WriteLine C# (CSharp) Method

WriteLine() public method

public WriteLine ( string format ) : void
format string
return void
        public override void WriteLine(string format, params object[] args)
        {
            //Produces output in Immediate Window with "Debug Selected Tests" in Release mode as well as Debug mode
            System.Diagnostics.Trace.WriteLine(string.Format(format, args));

            //Produces output in Immediate Window with "Debug Selected Tests" only in Debug mode
            //System.Diagnostics.Debug.WriteLine(format, args);
        }