From 050781e39750e033444629b79e45aab3f25fd4eb Mon Sep 17 00:00:00 2001 From: Andrei Sergeev Date: Sun, 11 Feb 2024 20:49:15 +0400 Subject: [PATCH] Taggeds: Add new XUnit tests stub --- .../Taggeds.Tests/GlobalUsings.cs | 1 + .../Taggeds.Tests/Taggeds.Tests.csproj | 31 +++++++++++++++++++ src/core-taggeds/Taggeds.Tests/TestStub.cs | 10 ++++++ 3 files changed, 42 insertions(+) create mode 100644 src/core-taggeds/Taggeds.Tests/GlobalUsings.cs create mode 100644 src/core-taggeds/Taggeds.Tests/Taggeds.Tests.csproj create mode 100644 src/core-taggeds/Taggeds.Tests/TestStub.cs diff --git a/src/core-taggeds/Taggeds.Tests/GlobalUsings.cs b/src/core-taggeds/Taggeds.Tests/GlobalUsings.cs new file mode 100644 index 00000000..8c927eb7 --- /dev/null +++ b/src/core-taggeds/Taggeds.Tests/GlobalUsings.cs @@ -0,0 +1 @@ +global using Xunit; \ No newline at end of file diff --git a/src/core-taggeds/Taggeds.Tests/Taggeds.Tests.csproj b/src/core-taggeds/Taggeds.Tests/Taggeds.Tests.csproj new file mode 100644 index 00000000..371acc63 --- /dev/null +++ b/src/core-taggeds/Taggeds.Tests/Taggeds.Tests.csproj @@ -0,0 +1,31 @@ + + + + net6.0;net7.0;net8.0 + latest + disable + enable + true + true + false + true + Andrei Sergeev, Pavel Moskovoy + Copyright © 2020-2024 Andrei Sergeev, Pavel Moskovoy + PrimeFuncPack.Core.Tests + PrimeFuncPack.Core.Taggeds.Tests + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + diff --git a/src/core-taggeds/Taggeds.Tests/TestStub.cs b/src/core-taggeds/Taggeds.Tests/TestStub.cs new file mode 100644 index 00000000..05f82c8d --- /dev/null +++ b/src/core-taggeds/Taggeds.Tests/TestStub.cs @@ -0,0 +1,10 @@ +namespace PrimeFuncPack.Core.Tests; + +public static class TestStub +{ + [Fact] + public static void TestTrue() + { + Assert.True(true); + } +}