원클릭으로
testing-with-tunit
Describes how to use TUnit testing framework properly
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Describes how to use TUnit testing framework properly
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | testing-with-tunit |
| description | Describes how to use TUnit testing framework properly |
| allowed-tools | ["Read","Write","Edit","Grep","Glob","Task","TodoWrite","dotnet"] |
The solution uses TUnit as testing framework. It is based on Microsoft.Testing.Platform architecture that has some differences from the traditional VSTest mode. When invoking tests via dotnet test the following key things should apply:
Running dotnet test on Microsoft.Testing.Platform, the additional -- are not required when passing test framework specific parameters. Ex: dotnet test -- --report-trx should become dotnet test --report-trx.
If passing a specific solution (or directory containing solution), for example, dotnet test MySolution.sln, this should become dotnet test --solution MySolution.sln.
If passing a specific project (or directory containing project), for example, dotnet test MyProject.csproj, this should become dotnet test --project MyProject.csproj.
If passing a specific dll, for example, dotnet test path/to/UnitTests.dll, this should become dotnet test --test-modules path/to/UnitTests.dll. Note that --test-modules also supports globbing.