From 8577ad38cc97802599e98e064f825c58dab2121a Mon Sep 17 00:00:00 2001 From: Ministorm3 <4474921+Ministorm3@users.noreply.github.com> Date: Mon, 27 Jul 2026 11:29:59 -0400 Subject: [PATCH] fix: discover tests in ErsatzTV.Tests 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