From 567e9ef290c3c5e9b05d9cd0af964d6d8b766001 Mon Sep 17 00:00:00 2001 From: Augustin AFFOGNON Date: Tue, 28 Feb 2023 20:59:23 +0100 Subject: [PATCH] revert 967a63b9edbc78d0f913dc73c9b38cee638173c6 revert correction --- .../HelloWordLib_UnitTests.csproj | 25 +++++++++++++++++++ .../Tests/HelloWordLib_UnitTests/UnitTest1.cs | 16 ++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 Sources/Tests/HelloWordLib_UnitTests/HelloWordLib_UnitTests.csproj create mode 100644 Sources/Tests/HelloWordLib_UnitTests/UnitTest1.cs diff --git a/Sources/Tests/HelloWordLib_UnitTests/HelloWordLib_UnitTests.csproj b/Sources/Tests/HelloWordLib_UnitTests/HelloWordLib_UnitTests.csproj new file mode 100644 index 0000000..c873f43 --- /dev/null +++ b/Sources/Tests/HelloWordLib_UnitTests/HelloWordLib_UnitTests.csproj @@ -0,0 +1,25 @@ + + + + net6.0 + + false + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + diff --git a/Sources/Tests/HelloWordLib_UnitTests/UnitTest1.cs b/Sources/Tests/HelloWordLib_UnitTests/UnitTest1.cs new file mode 100644 index 0000000..69d7a2a --- /dev/null +++ b/Sources/Tests/HelloWordLib_UnitTests/UnitTest1.cs @@ -0,0 +1,16 @@ +using System; +using HelloWorldLib; +using Xunit; + +namespace HelloWordLib_UnitTests +{ + public class UnitTest1 + { + [Fact] + public void Test1() + { + Class1 c = new Class1(); + Assert.NotNull(c); + } + } +}