diff --git a/WF-WebAdmin/UnitTesting/UnitTest1.cs b/WF-WebAdmin/UnitTesting/UnitTest1.cs new file mode 100644 index 0000000..6427e49 --- /dev/null +++ b/WF-WebAdmin/UnitTesting/UnitTest1.cs @@ -0,0 +1,11 @@ +namespace UnitTesting +{ + public class UnitTest1 + { + [Fact] + public void Test1() + { + + } + } +} \ No newline at end of file diff --git a/WF-WebAdmin/UnitTesting/UnitTesting.csproj b/WF-WebAdmin/UnitTesting/UnitTesting.csproj new file mode 100644 index 0000000..c5d1063 --- /dev/null +++ b/WF-WebAdmin/UnitTesting/UnitTesting.csproj @@ -0,0 +1,24 @@ + + + + net6.0 + enable + enable + + false + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + diff --git a/WF-WebAdmin/UnitTesting/Usings.cs b/WF-WebAdmin/UnitTesting/Usings.cs new file mode 100644 index 0000000..8c927eb --- /dev/null +++ b/WF-WebAdmin/UnitTesting/Usings.cs @@ -0,0 +1 @@ +global using Xunit; \ No newline at end of file