mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
@@ -1,5 +1,4 @@
|
||||
using System.Text;
|
||||
using Terminal.Gui;
|
||||
using Terminal.Gui;
|
||||
using TerminalGuiFluentTesting;
|
||||
using Xunit.Abstractions;
|
||||
|
||||
@@ -9,17 +8,6 @@ public class BasicFluentAssertionTests
|
||||
{
|
||||
private readonly TextWriter _out;
|
||||
|
||||
public class TestOutputWriter : TextWriter
|
||||
{
|
||||
private readonly ITestOutputHelper _output;
|
||||
|
||||
public TestOutputWriter (ITestOutputHelper output) { _output = output; }
|
||||
|
||||
public override void WriteLine (string? value) { _output.WriteLine (value ?? string.Empty); }
|
||||
|
||||
public override Encoding Encoding => Encoding.UTF8;
|
||||
}
|
||||
|
||||
public BasicFluentAssertionTests (ITestOutputHelper outputHelper) { _out = new TestOutputWriter (outputHelper); }
|
||||
|
||||
[Theory]
|
||||
|
||||
Reference in New Issue
Block a user