From 10b9548c29d0835f3358bb7623e46b9d46337114 Mon Sep 17 00:00:00 2001 From: Tudor Andrei Date: Sat, 1 Apr 2023 16:16:02 +0300 Subject: [PATCH] Delete test directory --- test/Program.cs | 16 ---------------- test/test.csproj | 14 -------------- 2 files changed, 30 deletions(-) delete mode 100644 test/Program.cs delete mode 100644 test/test.csproj diff --git a/test/Program.cs b/test/Program.cs deleted file mode 100644 index 58c3b9f..0000000 --- a/test/Program.cs +++ /dev/null @@ -1,16 +0,0 @@ -using PluginManager.WindowManagement; - -InputBox inputBox = new InputBox(); -inputBox.Title = "Test"; -inputBox.Message = "This is a test"; -inputBox.AddOption("Enter a number", (input) => int.TryParse(input, out int result)); -inputBox.AddOption("Enter a string", (input) => !string.IsNullOrEmpty(input)); -inputBox.AddOption("Enter a number", (input) => int.TryParse(input, out int result)); - -var result = inputBox.Show(); - -foreach (var item in result) -{ - Console.WriteLine(item); -} - diff --git a/test/test.csproj b/test/test.csproj deleted file mode 100644 index 61c8c2d..0000000 --- a/test/test.csproj +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - Exe - net6.0 - enable - enable - - -