From 1eca759c2b38427de8d89519536762ebbb532a54 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Apr 2026 11:43:55 +0000 Subject: [PATCH 1/2] Initial plan From b2e804619ff672092173b1ca5deb4ef7b6529b93 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Apr 2026 11:48:02 +0000 Subject: [PATCH 2/2] fix(dotnet-test): align writing-mstest-tests routing with anti-pattern skill Agent-Logs-Url: https://github.com/dotnet/skills/sessions/eb70209e-8e7a-4b49-820d-65e0e3fcaedc Co-authored-by: Evangelink <11340282+Evangelink@users.noreply.github.com> --- plugins/dotnet-test/skills/writing-mstest-tests/SKILL.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/dotnet-test/skills/writing-mstest-tests/SKILL.md b/plugins/dotnet-test/skills/writing-mstest-tests/SKILL.md index ecf03c520c..2f12a362b9 100644 --- a/plugins/dotnet-test/skills/writing-mstest-tests/SKILL.md +++ b/plugins/dotnet-test/skills/writing-mstest-tests/SKILL.md @@ -12,13 +12,14 @@ Help users write effective, modern unit tests with MSTest 3.x/4.x using current - User wants to write new MSTest unit tests - User wants to improve or modernize existing MSTest tests - User asks about MSTest assertion APIs, data-driven patterns, or test lifecycle -- User needs to review MSTest test code for anti-patterns +- User needs targeted help fixing or modernizing MSTest tests ## When Not to Use - User needs to run or execute tests (use the `run-tests` skill) - User needs to upgrade from MSTest v1/v2 to v3 (use `migrate-mstest-v1v2-to-v3`) - User needs to upgrade from MSTest v3 to v4 (use `migrate-mstest-v3-to-v4`) +- User needs to review or audit existing tests for anti-patterns or test quality (use `test-anti-patterns`) - User needs CI/CD pipeline configuration - User is using xUnit, NUnit, or TUnit (not MSTest) @@ -27,7 +28,7 @@ Help users write effective, modern unit tests with MSTest 3.x/4.x using current | Input | Required | Description | |-------|----------|-------------| | Code under test | No | The production code to be tested | -| Existing test code | No | Current tests to review or improve | +| Existing test code | No | Current tests to improve or modernize | | Test scenario description | No | What behavior the user wants to test | ## Workflow