Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

run-dotnet-tests运行 dotnet 测试

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

324

周安装

13

GitHub Stars

163

下载量

105
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:run-dotnet-tests(运行 dotnet 测试)
来源仓库:https://github.com/oocx/tfplan2md
仓库路径:skills/run-dotnet-tests
安装命令:
npx skills add https://github.com/oocx/tfplan2md --skill run-dotnet-tests
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/oocx/tfplan2md --skill run-dotnet-tests

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。
  • 使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。
  • run-dotnet-tests 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Run.NET Tests

Purpose

Provide standardized instructions for running.NET 10 tests correctly. Ensures agents use the scripts/test-with-timeout.sh wrapper instead of direct dotnet test calls, which fail due to.NET 10's dual test runner architecture.

When to Use This Skill

  • Before committing code changes that affect C# code
  • When verifying bug fixes or new features
  • When running targeted tests during development
  • When the full test suite must pass before marking work complete

Hard Rules

Must

  • ALWAYS use scripts/test-with-timeout.sh wrapper - never call dotnet test directly
  • Run tests from the repository root (the wrapper handles directory changes automatically)
  • Use --solution src/tfplan2md.slnx for full test suite runs
  • Use --project with relative paths from src/ directory (e.g., --project tests/Oocx.TfPlan2Md.TUnit/)
  • Wait for test completion and check exit code (0 = pass, non-zero = fail)
  • For snapshot test changes, use the update-test-snapshots skill instead of manual edits

Must Not

  • NEVER run dotnet test directly from command line - it will fail with MSB1001: Unknown switch errors from repo root
  • Never manually edit snapshot files in src/tests/Oocx.TfPlan2Md.TUnit/TestData/Snapshots/ - use the update-test-snapshots skill
  • Never ignore test failures or skip tests to make CI pass
  • Never modify test expectations to match broken output - fix the code, not the tests

.NET 10 Dual Test Runner Issue

.NET 10 introduced two distinct test runners with incompatible CLI flags:

Working DirectoryRunner Mode--solution--project--treenode-filterResult
Repo root (/)VSTestMSBuild error MSB1001: Unknown switch
src/ (where global.json lives)Microsoft.Testing.PlatformWorks correctly

The scripts/test-with-timeout.sh wrapper automatically:

  1. Changes to the src/ directory (where global.json with "runner": "Microsoft.Testing.Platform" exists)
  2. Normalizes any src/-prefixed paths in arguments
  3. Enforces a timeout to prevent hung test runs (default 120 seconds)

Why direct dotnet test fails: Running from repo root activates VSTest mode (no global.json), which doesn't support --solution, --project, or --treenode-filter flags. The wrapper ensures tests run from src/ directory to activate Microsoft.Testing.Platform mode.

Common Test Commands

Run Full Test Suite

scripts/test-with-timeout.sh -- dotnet test --solution src/tfplan2md.slnx

Run Tests with Build

scripts/test-with-timeout.sh -- dotnet test --solution src/tfplan2md.slnx --configuration Release --verbosity normal

Run Tests Without Build (faster when already built)

scripts/test-with-timeout.sh -- dotnet test --solution src/tfplan2md.slnx --no-build

Override Timeout (for slow tests)

scripts/test-with-timeout.sh --timeout-seconds 300 -- dotnet test --solution src/tfplan2md.slnx

Run Specific Project Tests

scripts/test-with-timeout.sh -- dotnet test --project tests/Oocx.TfPlan2Md.TUnit/

TUnit Test Filtering

Important: This project uses TUnit (not xUnit). TUnit uses --treenode-filter instead of --filter. All TUnit-specific flags must come after -- in the wrapper command.

Filter by Class Name (hierarchical pattern)

scripts/test-with-timeout.sh -- dotnet test --project tests/Oocx.TfPlan2Md.TUnit/ --treenode-filter /*/*/MarkdownRendererTests/*

Filter by Test Method Name

scripts/test-with-timeout.sh -- dotnet test --project tests/Oocx.TfPlan2Md.TUnit/ --treenode-filter /*/*/*/Render_ValidPlan_ContainsSummarySection

Filter Pattern Explanation

TUnit uses hierarchical path patterns:

  • /*/*/*/TestMethodName - Match specific test method
  • /*/*/ClassName/* - Match all tests in a class
  • /*/Namespace.ClassName/* - Match by namespace and class

Workflow Integration

When to Run Tests

  1. During Development (after each meaningful change): # Run targeted tests for the area you modified scripts/test-with-timeout.sh -- dotnet test --project tests/Oocx.TfPlan2Md.TUnit/ --treenode-filter /*/*/YourTestClass/*
  2. Before Committing (C# code changes only): # Run full test suite to ensure no regressions scripts/test-with-timeout.sh -- dotnet test --solution src/tfplan2md.slnx --no-build
  3. Skip Tests When (documentation/agent instructions only):

- Changes are limited to .github/agents/, .github/skills/, .github/copilot-instructions.md, or docs/ - No C# code was modified - The test suite doesn't validate these file types

Handling Test Failures

  1. Read the failure output - TUnit provides detailed error messages
  2. Identify the failing test - Look for the test method name and class
  3. Run the specific failing test - Use --treenode-filter to isolate it
  4. Debug and fix - Fix the code (never modify test expectations unless the test itself is wrong)
  5. Re-run tests - Verify the fix works
  6. Run full suite - Ensure no regressions before committing

Snapshot Test Changes

If tests fail because snapshot files need updating (intentional output changes):

  1. Use the update-test-snapshots skill - Never manually edit snapshot files
  2. Verify the new output is correct - Review the diff carefully
  3. Include SNAPSHOT_UPDATE_OK in commit message - Document the intentional change
  4. Re-run tests - Confirm all tests pass with new snapshots

Exit Codes

Exit CodeMeaningAction
0All tests passedProceed with commit
1-123Test failuresFix failing tests before committing
124TimeoutIncrease timeout with --timeout-seconds or investigate hung tests
125Wrapper errorCheck command syntax

Golden Example

Complete workflow for implementing a feature:

# 1. Build the project
dotnet build

# 2. Run targeted tests during development
scripts/test-with-timeout.sh -- dotnet test --project tests/Oocx.TfPlan2Md.TUnit/ --treenode-filter /*/*/MyFeatureTests/*

# 3. Make changes, run tests again
scripts/test-with-timeout.sh -- dotnet test --project tests/Oocx.TfPlan2Md.TUnit/ --treenode-filter /*/*/MyFeatureTests/*

# 4. Before committing, run full suite
scripts/test-with-timeout.sh -- dotnet test --solution src/tfplan2md.slnx --no-build

# 5. If all pass, commit changes
git add .
git commit -m "feat: implement my feature"

Troubleshooting

Error: MSBuild error MSB1001: Unknown switch

Cause: Running dotnet test directly from repo root (VSTest mode doesn't support --solution/--project flags) Solution: Use scripts/test-with-timeout.sh wrapper

Error: Timeout after 120 seconds

Cause: Tests taking longer than default timeout Solution: Increase timeout with --timeout-seconds 300 (or higher)

Error: Test not found with --treenode-filter

Cause: Incorrect filter pattern or test doesn't exist Solution:

  • List all tests first: scripts/test-with-timeout.sh -- dotnet test --list-tests
  • Verify filter pattern matches TUnit hierarchical structure

Snapshot test failures after output changes

Cause: Intentional output format changes Solution: Use update-test-snapshots skill to regenerate snapshots correctly

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.72%
按下载量换算40

Claude

30.99%
按下载量换算33

Cursor

18.27%
按下载量换算19

Gemini CLI

9.98%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills