From ed78ef9a09a9197d01272598c80ce9b67a5ea42d Mon Sep 17 00:00:00 2001 From: "jothikaaravindhan@gmail.com" Date: Tue, 28 Jan 2025 01:10:39 +0530 Subject: [PATCH] Adding unit test project --- Xunit/UnitTest1.cs | 10 ++++++++++ Xunit/Xunit.csproj | 23 +++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 Xunit/UnitTest1.cs create mode 100644 Xunit/Xunit.csproj diff --git a/Xunit/UnitTest1.cs b/Xunit/UnitTest1.cs new file mode 100644 index 0000000..32c9d1a --- /dev/null +++ b/Xunit/UnitTest1.cs @@ -0,0 +1,10 @@ +namespace Xunit; + +public class UnitTest1 +{ + [Fact] + public void Test1() + { + + } +} \ No newline at end of file diff --git a/Xunit/Xunit.csproj b/Xunit/Xunit.csproj new file mode 100644 index 0000000..9c5b30a --- /dev/null +++ b/Xunit/Xunit.csproj @@ -0,0 +1,23 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + +