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); + } + } +}