From 3f2efcd4ffc423eb654d747e3ccc8be3d1266a64 Mon Sep 17 00:00:00 2001 From: Ministorm3 <4474921+Ministorm3@users.noreply.github.com> Date: Mon, 27 Jul 2026 12:15:38 -0400 Subject: [PATCH] fix: discover tests in ErsatzTV.Tests (#2959) ErsatzTV.Tests references NUnit, NUnit3TestAdapter and Shouldly, but not Microsoft.NET.Test.Sdk. Without it `dotnet test` builds the project and then discovers nothing in it, so the two MultiSelectBase tests added alongside the project in #2738 have never actually run. Adding the package lets them execute; both pass, and a solution-wide `dotnet test` still reports no failures. Co-authored-by: Claude Opus 5 --- ErsatzTV.Tests/ErsatzTV.Tests.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/ErsatzTV.Tests/ErsatzTV.Tests.csproj b/ErsatzTV.Tests/ErsatzTV.Tests.csproj index 27e94d915..c7c4506c2 100644 --- a/ErsatzTV.Tests/ErsatzTV.Tests.csproj +++ b/ErsatzTV.Tests/ErsatzTV.Tests.csproj @@ -12,6 +12,7 @@ + all