8 references to ForwardOptions
Microsoft.DotNet.Cli.Utils.Tests (8)
StreamForwarderTests.cs (8)
42TestCapturingAndForwardingHelper(ForwardOptions.None, inputStr, null, new string[0]);
54TestCapturingAndForwardingHelper(ForwardOptions.WriteLine, inputStr, null, expectedWrites);
68TestCapturingAndForwardingHelper(ForwardOptions.Capture, inputStr, expectedCaptured, new string[0]);
82TestCapturingAndForwardingHelper(ForwardOptions.WriteLine | ForwardOptions.Capture, inputStr, expectedCaptured, expectedWrites);
92private void TestCapturingAndForwardingHelper(ForwardOptions options, string str, string expectedCaptured, string[] expectedWrites)
97if ((options & ForwardOptions.WriteLine) != 0)
101if ((options & ForwardOptions.Capture) != 0)