この質問は、再度提起する前に複数回尋ねられたことを知っていますが、dotnet 5.0 と xunit についてはまだ回答を得ることができませんでした。
私は何を試しましたか。
- 次のテストを定義しています
public class IntegrationTests
{
[Theory]
[MemberData(nameof(Tests), MemberType = typeof(IntegrationTests))]
public void Test(IntegrationTest test)
{
Assert.True(test.Expected, test.Actual);
}
}
- Visual Studio 2019 はすべてのテストを認識し、問題なく実行します
- dotnet test コマンドは言う
dotnet test <path to>.csproj
Starting test execution, please wait...
A total of 1 test files matched the specified pattern.
No test is available in C:\<path>\bin\Debug\net5.0\<projectname>.dll.
Make sure that test discoverer & executors are registered and platform & framework
version settings are appropriate and try again.
「テスト発見者と実行者がここで何を意味するのか、私は完全には理解していません。
私の .csproj ファイルには、次の nuget パッケージがあります (同様の質問の多くは、これらのいずれかを追加することで解決されたため)
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.console" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>