From cf058808dcd61de04015bef1e2096a7e95dd125b Mon Sep 17 00:00:00 2001 From: TypoMustakes Date: Wed, 6 Dec 2023 23:32:06 +0100 Subject: [PATCH] Recreated faulty Test project --- WD7UVN_HFT_2023241.Test/Class1.cs | 1 + WD7UVN_HFT_2023241.Test/UnitTest1.cs | 18 ++++++++++ .../WD7UVN_HFT_2023241.Test.csproj | 35 ++++++++++++------- 3 files changed, 41 insertions(+), 13 deletions(-) create mode 100644 WD7UVN_HFT_2023241.Test/UnitTest1.cs diff --git a/WD7UVN_HFT_2023241.Test/Class1.cs b/WD7UVN_HFT_2023241.Test/Class1.cs index 7dea0bf..efa4af9 100644 --- a/WD7UVN_HFT_2023241.Test/Class1.cs +++ b/WD7UVN_HFT_2023241.Test/Class1.cs @@ -1,4 +1,5 @@ using System; +using namespace WD7UVN_HFT_2023241.Test { diff --git a/WD7UVN_HFT_2023241.Test/UnitTest1.cs b/WD7UVN_HFT_2023241.Test/UnitTest1.cs new file mode 100644 index 0000000..d0c15a3 --- /dev/null +++ b/WD7UVN_HFT_2023241.Test/UnitTest1.cs @@ -0,0 +1,18 @@ +using NUnit.Framework; + +namespace WD7UVN_HFT_2023241.Test +{ + public class Tests + { + [SetUp] + public void Setup() + { + } + + [Test] + public void Test1() + { + Assert.Pass(); + } + } +} \ No newline at end of file diff --git a/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj b/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj index bd6f14d..f138049 100644 --- a/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj +++ b/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj @@ -1,13 +1,22 @@ - - - - net5.0 - - - - - - - - - + + + + net5.0 + + false + + + + + + + + + + + + \ No newline at end of file