commit 7465cbff196a48587e0c72b0149129f0b945a537 parent 38da6ca8a783c59669560bf0a56953e4e11da586 Author: Mikolaj Lenczewski <mikolaj.lenczewski308@gmail.com> Date: Tue, 23 Jun 2020 18:08:09 +0100 Added Basic Tests Diffstat:
| M | NetSharp/NetSharp.Tests/Program.cs | | | 12 | +++++++----- |
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/NetSharp/NetSharp.Tests/Program.cs b/NetSharp/NetSharp.Tests/Program.cs @@ -1,17 +1,19 @@ -using System; -using System.Net; +using System.Net; using System.Resources; using System.Text; +using Xunit; + [assembly: NeutralResourcesLanguage("en")] namespace NetSharp.Tests { - internal class Program + public class Program { - private static void Main() + [Fact] + public void HelloTests() { - Console.WriteLine("Hello World!"); + Assert.True(true); } public static class Constants