Remove NStack and replace ustring to string.

This commit is contained in:
BDisp
2023-05-07 18:16:52 +01:00
parent dea5f0fe03
commit 2a63ede8ba
145 changed files with 2800 additions and 2702 deletions

View File

@@ -5,7 +5,7 @@ using Xunit.Abstractions;
// Alias Console to MockConsole so we don't accidentally use Console
using Console = Terminal.Gui.FakeConsole;
using NStack;
using System.Text;
using Terminal.Gui;
namespace Terminal.Gui.ViewsTests {
@@ -23,7 +23,7 @@ namespace Terminal.Gui.ViewsTests {
// Parameterless
var r = new Window ();
Assert.NotNull (r);
Assert.Equal (ustring.Empty, r.Title);
Assert.Equal (string.Empty, r.Title);
Assert.Equal (LayoutStyle.Computed, r.LayoutStyle);
Assert.Equal ("Window()((0,0,0,0))", r.ToString ());
Assert.True (r.CanFocus);