dotnet-test

Execute .NET test suites with customizable filters and targets.

Updated Jul 9, 2026
One-click install
npx skills add https://github.com/albertoirurueta/ai-catalog --skill dotnet-test-albertoirurueta
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dotnet-test
Source: https://github.com/albertoirurueta/ai-catalog/tree/main/.claude/skills/dotnet-test
Command: npx skills add https://github.com/albertoirurueta/ai-catalog --skill dotnet-test-albertoirurueta

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill streamlines the process of running .NET tests, allowing users to execute test suites with specific scopes and filters, reducing the time spent on manual test execution.

Core Features & Use Cases

  • Selective Test Execution: Run tests for specific classes, methods, or even namespaces.
  • Project and Solution Targeting: Execute tests on a specific project or solution file.
  • Filtering Options: Utilize filters to narrow down test execution to particular traits, categories, or methods.
  • Use Case: When you need to run only a subset of tests from a large test suite to quickly identify issues in a specific area of your code.

Quick Start

Run all tests in the current solution with /dotnet-test.

Frequently Asked Questions about dotnet-test

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a specific subset of .NET tests without executing the entire test suite?

You can execute specific .NET tests by applying customizable filters for classes, methods, namespaces, or traits. This selective test execution targets specific scopes to reduce manual execution time and isolate issues.

Can I execute tests targeting a specific project or solution file in .NET?

Yes, you can target a specific project or solution file for .NET test execution. This narrows test suite management to run tests only for the particular project scope you are currently working on.

Do I need the .NET SDK installed to run dotnet test suites?

Yes, the .NET SDK and .NET CLI are required to run tests and generate results. These environment dependencies provide the underlying execution framework required to manage and execute .NET test suites.

What is the best way to manage large .NET test suites for quick issue identification?

The best way to manage large .NET test suites is using filtering options to narrow execution to particular categories or methods. This reduces time spent on manual test execution by focusing only on relevant tests.

How do I run all tests in my current solution using the dotnet test command?

You can run all tests in your current solution by executing the test command without additional filters. This initiates a full test suite run across the entire solution scope to generate comprehensive test results.