Source: kevintsengtw/dotnet-testing-agent-skills (MIT). Ported into dotnet-agent-harness.
.NET Advanced Testing Skills Overview
🤖 AI Agent Important Notes
When you (AI Agent) are loaded with this advanced entry skill, please read the following guidelines first:
📋 Positioning of This Skill
This file is an "advanced testing navigation center" used to help find the correct advanced sub-skills.
Your Tasks Are
- ✅ Match corresponding advanced sub-skills based on user needs
- ✅ Use the
Skill tool to load specific sub-skills
- ✅ Let sub-skills provide professional integration testing guidance
Prohibited Behaviors
- ❌ Do not provide integration test code directly in this entry skill
- ❌ Do not start implementing tests without loading sub-skills
- ❌ Do not skip sub-skills to provide "general" integration testing advice
🎯 Quick Skill Reference Table (AI Agent Must Read)
Keywords mentioned by users → Advanced sub-skills to load
Integration Testing Skills
| User Says... |
Load Command |
Purpose |
| API testing, Controller testing, endpoint testing |
/skill dotnet-testing-advanced-aspnet-integration-testing |
Basic API integration testing |
| Full CRUD, WebAPI testing, business process testing |
/skill dotnet-testing-advanced-webapi-integration-testing |
Complete API flow testing |
| WebApplicationFactory, TestServer |
/skill dotnet-testing-advanced-aspnet-integration-testing |
WebApplicationFactory usage |
Containerized Testing Skills
| User Says... |
Load Command |
Purpose |
| SQL Server container, PostgreSQL, MySQL |
/skill dotnet-testing-advanced-testcontainers-database |
Relational database container testing |
| MongoDB, Redis, Elasticsearch |
/skill dotnet-testing-advanced-testcontainers-nosql |
NoSQL database container testing |
| Real database, EF Core testing, Dapper testing |
/skill dotnet-testing-advanced-testcontainers-database |
Real database behavior testing |
| Testcontainers, container testing, Docker testing |
/skill dotnet-testing-advanced-testcontainers-database |
Testcontainers fundamentals |
Microservice Testing Skills
| User Says... |
Load Command |
Purpose |
| .NET Aspire, microservice testing, distributed testing |
/skill dotnet-testing-advanced-aspire-testing |
Aspire microservice testing |
| DistributedApplication, inter-service communication |
/skill dotnet-testing-advanced-aspire-testing |
Aspire application testing |
Framework Upgrade Skills
| User Says... |
Load Command |
Purpose |
| xUnit upgrade, xUnit 3.x, version upgrade |
/skill dotnet-testing-advanced-xunit-upgrade-guide |
xUnit 2.x → 3.x upgrade |
| TUnit, new test framework, TUnit fundamentals |
/skill dotnet-testing-advanced-tunit-fundamentals |
TUnit fundamentals and migration |
| TUnit advanced, TUnit DI, parallel execution |
/skill dotnet-testing-advanced-tunit-advanced |
TUnit advanced features |
⚠️ Usage Flow Examples
✅ Correct Flow
User: Please help me create API integration tests for ProductsController
AI: I notice you need API integration testing. According to the quick reference table,
I should load the dotnet-testing-advanced-aspnet-integration-testing skill.
[Use Skill tool to load sub-skill]
AI: Now following the ASP.NET Core Integration Testing skill guidelines to create tests for you...
```text
### ❌ Incorrect Flow
```text
User: Please help me create API integration tests for ProductsController
AI: Okay, let me write the integration tests... (start writing code directly without loading sub-skills)
```text
---
## 📚 Complete Skill List
To view the complete list of 8 advanced skills, detailed decision trees, and learning path recommendations, please continue reading the subsequent content of this file.
**Human Developer Reference**: For quick lookup, please check [SKILLS_QUICK_INDEX.md](/SKILLS_QUICK_INDEX.md)
---
## Applicable Scenarios
When you need the following advanced testing capabilities, I will help you find the correct skills:
- Test complete Web API endpoints and HTTP flows
- Use real databases in tests (containerized)
- Test NoSQL databases (MongoDB, Redis, etc.)
- Test microservice architectures and distributed systems
- Upgrade test framework versions (xUnit 2.x → 3.x)
- Migrate to new test frameworks (TUnit)
- Create end-to-end integration tests
## Quick Decision Tree
Quickly find corresponding advanced sub-skills based on testing scenarios (API testing, real database, microservices, framework migration). Covers 4 major scenarios and multiple option branches.
> 📖 For details, please refer to [references/decision-tree.md](references/decision-tree.md)
---
## Skill Classification Map
8 advanced skills divided into three categories: Integration Testing (4), Microservice Testing (1), Framework Migration (3), including each skill's core value, suitable scenarios, learning difficulty, and prerequisite skills.
> 📖 For details, please refer to [references/skill-classification-map.md](references/skill-classification-map.md)
---
## Common Task Mapping Table
Complete mapping of 7 common tasks, including scenario descriptions, recommended skills, implementation steps, prompt examples, and expected code structures.
> 📖 For details, please refer to [references/task-mapping-table.md](references/task-mapping-table.md)
---
## Integration Testing Level Mapping
Choose appropriate testing strategies based on project complexity:
### Level 1: Simple WebApi Project
**Project Characteristics**:
- Simple CRUD API
- No external dependencies or use in-memory implementations
- Simple business logic
**Recommended Skills**:
- `dotnet-testing-advanced-aspnet-integration-testing`
**Testing Focus**:
- Route validation
- Model binding
- HTTP responses
- Basic business logic
**Sample Projects**:
- TodoList API
- Simple product catalog
---
### Level 2: WebApi Project with Service Dependencies
**Project Characteristics**:
- Has business logic layer (Services)
- Depends on external services (can be Mocked)
- Medium complexity
**Recommended Skill Combination**:
1. `dotnet-testing-advanced-aspnet-integration-testing` (fundamentals)
2. `dotnet-testing-nsubstitute-mocking` (mocking dependencies)
**Testing Strategy**:
- Use NSubstitute to create Service stubs
- Test Controller and Service interactions
- Validate error handling
**Sample Projects**:
- E-commerce API (with inventory, order services)
- CMS system
---
### Level 3: Complete WebApi Project
**Project Characteristics**:
- Complex business logic
- Needs real database
- May have external API integrations
- Complete error handling
**Recommended Skill Combination**:
1. `dotnet-testing-advanced-webapi-integration-testing` (complete flow)
2. `dotnet-testing-advanced-testcontainers-database` (real database)
3. `dotnet-testing-advanced-testcontainers-nosql` (if using NoSQL)
**Testing Strategy**:
- Use Testcontainers to create real databases
- Complete end-to-end testing
- Test data preparation and cleanup
- Validate all error scenarios
**Sample Projects**:
- Large e-commerce platform
- Enterprise management system
- SaaS application
---
## Learning Path Recommendations
Contains complete learning plans for integration testing entry (1 week), microservice testing specialization (3-5 days), and framework migration paths, including daily learning focuses.
> 📖 For details, please refer to [references/learning-paths.md](references/learning-paths.md)
---
## Skill Combination Recommendations
Based on different project needs, the following skill combinations are recommended:
### Combination 1: Complete API Testing Project
**Suitable**: Creating complete test suites for production projects
**Skill Combination**:
1. `dotnet-testing-advanced-aspnet-integration-testing` (fundamentals)
2. `dotnet-testing-advanced-testcontainers-database` (real database)
3. `dotnet-testing-advanced-webapi-integration-testing` (complete flow)
**Learning Order**:
1. Learn aspnet-integration-testing for fundamentals first
2. Then learn testcontainers-database to master database testing
3. Finally learn webapi-integration-testing for integrated application
**Expected Results**:
- Can create complete tests for Web API projects
- Use real databases to validate behavior
- Test all CRUD endpoints and error handling
---
### Combination 2: Microservice Testing Solution
**Suitable**: Microservice architectures, distributed systems
**Skill Combination**:
1. `dotnet-testing-advanced-aspire-testing` (core)
2. `dotnet-testing-advanced-testcontainers-database` (database)
3. `dotnet-testing-advanced-testcontainers-nosql` (NoSQL)
**Learning Order**:
1. Learn testcontainers first (database testing fundamentals)
2. Then learn aspire-testing (microservice testing)
**Expected Results**:
- Test .NET Aspire projects
- Validate inter-service communication
- Use containerized environments for testing
---
### Combination 3: Framework Modernization
**Suitable**: Test framework upgrades or migrations
#### Option A: xUnit Upgrade
**Skills**:
- `dotnet-testing-advanced-xunit-upgrade-guide`
**Suitable**:
- Existing projects using xUnit 2.x
- Want to upgrade to latest version
---
#### Option B: TUnit Migration
**Skill Combination**:
1. `dotnet-testing-advanced-tunit-fundamentals` (fundamentals)
2. `dotnet-testing-advanced-tunit-advanced` (advanced)
**Suitable**:
- New projects choosing test frameworks
- Considering migration from xUnit
**Learning Order**:
1. Learn fundamentals first to understand basics
2. Then learn advanced to master advanced features
---
## Prerequisite Skills Requirements
Before learning advanced skills, it is recommended to master the following fundamental skills (from `dotnet-testing` fundamental skill set):
### Required Skills
#### 1. dotnet-testing-unit-test-fundamentals
**Why Required**:
- Integration tests also follow 3A Pattern
- FIRST principles equally apply
- Need to understand testing fundamentals concepts
---
#### 2. dotnet-testing-xunit-project-setup
**Why Required**:
- Need to create test projects
- Understand project structure
- Understand package management
---
#### 3. dotnet-testing-awesome-assertions-guide
**Why Required**:
- Integration tests need to validate HTTP responses
- FluentAssertions.Web provides powerful API assertions
- Improve test readability
---
### Recommended Skills
#### 1. dotnet-testing-nsubstitute-mocking
**Why Recommended**:
- May need to Mock external services in integration tests
- WebApplicationFactory needs to replace services
---
#### 2. dotnet-testing-autofixture-basics
**Why Recommended**:
- Quickly generate test data
- Reduce integration test boilerplate code
---
## Guided Conversation Examples
4 complete conversation examples showing how AI guides selection of correct skills: API testing, microservice testing, framework upgrade, TUnit evaluation.
> 📖 For details, please refer to [references/conversation-examples.md](references/conversation-examples.md)
---
## Relationship with Fundamental Skills
Advanced skills build upon fundamental skills:
**Fundamental Testing Capabilities** → `dotnet-testing` (Fundamental Skill Set)
- Unit test fundamentals
- Test data generation
- Assertions and mocking
- Special scenario handling
### ↓ Advanced Applications
**Advanced Integration Testing** → `dotnet-testing-advanced` (This Skill Set)
- Web API integration testing
- Containerized testing
- Microservice testing
- Framework upgrades
**Learning Recommendation**:
Complete the core skills of `dotnet-testing` fundamental skill set first, then enter this advanced skill set.
---
## Related Resources
### Original Data Sources
- **iThome Ironman Competition Series**: [Old School Software Engineer's Testing Practice - 30 Day Challenge](https://ithelp.ithome.com.tw/users/20066083/ironman/8276)
🏆 2025 iThome Ironman Competition Software Development Group Champion
- **Complete Sample Code**: [30Days_in_Testing_Samples](https://github.com/kevintsengtw/30Days_in_Testing_Samples)
Contains executable code for all sample projects
### Technical Requirements
**Integration Testing Skills**:
- .NET 8+
- Docker Desktop
- WSL2 (Windows environment)
**Aspire Testing Skills**:
- .NET 8+
- .NET Aspire Workload
- Docker Desktop
---
## Next Steps
Choose the advanced skill that matches your needs to start learning, or tell me your specific situation and I will recommend the most suitable learning path!
**Quick Start**:
- Want to test APIs → Start with `dotnet-testing-advanced-aspnet-integration-testing`
- Need real database → Start with `dotnet-testing-advanced-testcontainers-database`
- Microservice project → Use `dotnet-testing-advanced-aspire-testing`
- Framework upgrade → Use corresponding upgrade guide
- Unsure → Tell me your project situation and I will help you analyze
1---2name: dotnet-testing-advanced-43description: .NET advanced testing skills overview and navigation center. Triggered when users ask about "integration testing", "API testing", "containerized testing", "microservice testing", "test framework migration", "Testcontainers", "Aspire testing", and other advanced testing needs. Recommends appropriate sub-skills based on specific requirements, covering integration testing, Testcontainers, Aspire testing, framework upgrades, and other 8 advanced skills. Keywords: integration testing, integration testing, API testing, advanced testing, advanced testing, testcontainers, aspire testing, WebApplicationFactory, TestServer, database test, database testing, EF Core test, MongoDB test, Redis test, Docker test, container testing, microservice test, microservice testing, .NET Aspire, xUnit upgrade, TUnit, framework migration4license: MIT5---67Source: kevintsengtw/dotnet-testing-agent-skills (MIT). Ported into dotnet-agent-harness.89# .NET Advanced Testing Skills Overview1011---1213## 🤖 AI Agent Important Notes1415**When you (AI Agent) are loaded with this advanced entry skill, please read the following guidelines first**:1617### 📋 Positioning of This Skill1819This file is an "advanced testing navigation center" used to help find the correct **advanced sub-skills**.2021#### Your Tasks Are22231. ✅ Match corresponding advanced sub-skills based on user needs242. ✅ Use the `Skill` tool to load specific sub-skills253. ✅ Let sub-skills provide professional integration testing guidance2627#### Prohibited Behaviors2829- ❌ Do not provide integration test code directly in this entry skill30- ❌ Do not start implementing tests without loading sub-skills31- ❌ Do not skip sub-skills to provide "general" integration testing advice3233---3435## 🎯 Quick Skill Reference Table (AI Agent Must Read)3637### Keywords mentioned by users → Advanced sub-skills to load3839### Integration Testing Skills4041| User Says... | Load Command | Purpose |42| ------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------- |43| **API testing**, Controller testing, endpoint testing | `/skill dotnet-testing-advanced-aspnet-integration-testing` | Basic API integration testing |44| **Full CRUD**, WebAPI testing, business process testing | `/skill dotnet-testing-advanced-webapi-integration-testing` | Complete API flow testing |45| **WebApplicationFactory**, TestServer | `/skill dotnet-testing-advanced-aspnet-integration-testing` | WebApplicationFactory usage |4647### Containerized Testing Skills4849| User Says... | Load Command | Purpose |50| ----------------------------------------------------- | -------------------------------------------------------- | ------------------------------------- |51| **SQL Server container**, PostgreSQL, MySQL | `/skill dotnet-testing-advanced-testcontainers-database` | Relational database container testing |52| **MongoDB**, Redis, Elasticsearch | `/skill dotnet-testing-advanced-testcontainers-nosql` | NoSQL database container testing |53| **Real database**, EF Core testing, Dapper testing | `/skill dotnet-testing-advanced-testcontainers-database` | Real database behavior testing |54| **Testcontainers**, container testing, Docker testing | `/skill dotnet-testing-advanced-testcontainers-database` | Testcontainers fundamentals |5556### Microservice Testing Skills5758| User Says... | Load Command | Purpose |59| ---------------------------------------------------------- | ----------------------------------------------- | --------------------------- |60| **.NET Aspire**, microservice testing, distributed testing | `/skill dotnet-testing-advanced-aspire-testing` | Aspire microservice testing |61| **DistributedApplication**, inter-service communication | `/skill dotnet-testing-advanced-aspire-testing` | Aspire application testing |6263### Framework Upgrade Skills6465| User Says... | Load Command | Purpose |66| ------------------------------------------------- | ---------------------------------------------------- | -------------------------------- |67| **xUnit upgrade**, xUnit 3.x, version upgrade | `/skill dotnet-testing-advanced-xunit-upgrade-guide` | xUnit 2.x → 3.x upgrade |68| **TUnit**, new test framework, TUnit fundamentals | `/skill dotnet-testing-advanced-tunit-fundamentals` | TUnit fundamentals and migration |69| **TUnit advanced**, TUnit DI, parallel execution | `/skill dotnet-testing-advanced-tunit-advanced` | TUnit advanced features |7071---7273## ⚠️ Usage Flow Examples7475### ✅ Correct Flow7677````text78User: Please help me create API integration tests for ProductsController7980AI: I notice you need API integration testing. According to the quick reference table,81 I should load the dotnet-testing-advanced-aspnet-integration-testing skill.8283 [Use Skill tool to load sub-skill]8485AI: Now following the ASP.NET Core Integration Testing skill guidelines to create tests for you...86```text8788### ❌ Incorrect Flow8990```text91User: Please help me create API integration tests for ProductsController9293AI: Okay, let me write the integration tests... (start writing code directly without loading sub-skills)94```text9596---9798## 📚 Complete Skill List99100To view the complete list of 8 advanced skills, detailed decision trees, and learning path recommendations, please continue reading the subsequent content of this file.101102**Human Developer Reference**: For quick lookup, please check [SKILLS_QUICK_INDEX.md](/SKILLS_QUICK_INDEX.md)103104---105106## Applicable Scenarios107108When you need the following advanced testing capabilities, I will help you find the correct skills:109110- Test complete Web API endpoints and HTTP flows111- Use real databases in tests (containerized)112- Test NoSQL databases (MongoDB, Redis, etc.)113- Test microservice architectures and distributed systems114- Upgrade test framework versions (xUnit 2.x → 3.x)115- Migrate to new test frameworks (TUnit)116- Create end-to-end integration tests117118## Quick Decision Tree119120Quickly find corresponding advanced sub-skills based on testing scenarios (API testing, real database, microservices, framework migration). Covers 4 major scenarios and multiple option branches.121122> 📖 For details, please refer to [references/decision-tree.md](references/decision-tree.md)123124---125126## Skill Classification Map1271288 advanced skills divided into three categories: Integration Testing (4), Microservice Testing (1), Framework Migration (3), including each skill's core value, suitable scenarios, learning difficulty, and prerequisite skills.129130> 📖 For details, please refer to [references/skill-classification-map.md](references/skill-classification-map.md)131132---133134## Common Task Mapping Table135136Complete mapping of 7 common tasks, including scenario descriptions, recommended skills, implementation steps, prompt examples, and expected code structures.137138> 📖 For details, please refer to [references/task-mapping-table.md](references/task-mapping-table.md)139140---141142## Integration Testing Level Mapping143144Choose appropriate testing strategies based on project complexity:145146### Level 1: Simple WebApi Project147148**Project Characteristics**:149- Simple CRUD API150- No external dependencies or use in-memory implementations151- Simple business logic152153**Recommended Skills**:154- `dotnet-testing-advanced-aspnet-integration-testing`155156**Testing Focus**:157- Route validation158- Model binding159- HTTP responses160- Basic business logic161162**Sample Projects**:163- TodoList API164- Simple product catalog165166---167168### Level 2: WebApi Project with Service Dependencies169170**Project Characteristics**:171- Has business logic layer (Services)172- Depends on external services (can be Mocked)173- Medium complexity174175**Recommended Skill Combination**:1761. `dotnet-testing-advanced-aspnet-integration-testing` (fundamentals)1772. `dotnet-testing-nsubstitute-mocking` (mocking dependencies)178179**Testing Strategy**:180- Use NSubstitute to create Service stubs181- Test Controller and Service interactions182- Validate error handling183184**Sample Projects**:185- E-commerce API (with inventory, order services)186- CMS system187188---189190### Level 3: Complete WebApi Project191192**Project Characteristics**:193- Complex business logic194- Needs real database195- May have external API integrations196- Complete error handling197198**Recommended Skill Combination**:1991. `dotnet-testing-advanced-webapi-integration-testing` (complete flow)2002. `dotnet-testing-advanced-testcontainers-database` (real database)2013. `dotnet-testing-advanced-testcontainers-nosql` (if using NoSQL)202203**Testing Strategy**:204- Use Testcontainers to create real databases205- Complete end-to-end testing206- Test data preparation and cleanup207- Validate all error scenarios208209**Sample Projects**:210- Large e-commerce platform211- Enterprise management system212- SaaS application213214---215216## Learning Path Recommendations217218Contains complete learning plans for integration testing entry (1 week), microservice testing specialization (3-5 days), and framework migration paths, including daily learning focuses.219220> 📖 For details, please refer to [references/learning-paths.md](references/learning-paths.md)221222---223224## Skill Combination Recommendations225226Based on different project needs, the following skill combinations are recommended:227228### Combination 1: Complete API Testing Project229230**Suitable**: Creating complete test suites for production projects231232**Skill Combination**:2331. `dotnet-testing-advanced-aspnet-integration-testing` (fundamentals)2342. `dotnet-testing-advanced-testcontainers-database` (real database)2353. `dotnet-testing-advanced-webapi-integration-testing` (complete flow)236237**Learning Order**:2381. Learn aspnet-integration-testing for fundamentals first2392. Then learn testcontainers-database to master database testing2403. Finally learn webapi-integration-testing for integrated application241242**Expected Results**:243- Can create complete tests for Web API projects244- Use real databases to validate behavior245- Test all CRUD endpoints and error handling246247---248249### Combination 2: Microservice Testing Solution250251**Suitable**: Microservice architectures, distributed systems252253**Skill Combination**:2541. `dotnet-testing-advanced-aspire-testing` (core)2552. `dotnet-testing-advanced-testcontainers-database` (database)2563. `dotnet-testing-advanced-testcontainers-nosql` (NoSQL)257258**Learning Order**:2591. Learn testcontainers first (database testing fundamentals)2602. Then learn aspire-testing (microservice testing)261262**Expected Results**:263- Test .NET Aspire projects264- Validate inter-service communication265- Use containerized environments for testing266267---268269### Combination 3: Framework Modernization270271**Suitable**: Test framework upgrades or migrations272273#### Option A: xUnit Upgrade274**Skills**:275- `dotnet-testing-advanced-xunit-upgrade-guide`276277**Suitable**:278- Existing projects using xUnit 2.x279- Want to upgrade to latest version280281---282283#### Option B: TUnit Migration284**Skill Combination**:2851. `dotnet-testing-advanced-tunit-fundamentals` (fundamentals)2862. `dotnet-testing-advanced-tunit-advanced` (advanced)287288**Suitable**:289- New projects choosing test frameworks290- Considering migration from xUnit291292**Learning Order**:2931. Learn fundamentals first to understand basics2942. Then learn advanced to master advanced features295296---297298## Prerequisite Skills Requirements299300Before learning advanced skills, it is recommended to master the following fundamental skills (from `dotnet-testing` fundamental skill set):301302### Required Skills303304#### 1. dotnet-testing-unit-test-fundamentals305**Why Required**:306- Integration tests also follow 3A Pattern307- FIRST principles equally apply308- Need to understand testing fundamentals concepts309310---311312#### 2. dotnet-testing-xunit-project-setup313**Why Required**:314- Need to create test projects315- Understand project structure316- Understand package management317318---319320#### 3. dotnet-testing-awesome-assertions-guide321**Why Required**:322- Integration tests need to validate HTTP responses323- FluentAssertions.Web provides powerful API assertions324- Improve test readability325326---327328### Recommended Skills329330#### 1. dotnet-testing-nsubstitute-mocking331**Why Recommended**:332- May need to Mock external services in integration tests333- WebApplicationFactory needs to replace services334335---336337#### 2. dotnet-testing-autofixture-basics338**Why Recommended**:339- Quickly generate test data340- Reduce integration test boilerplate code341342---343344## Guided Conversation Examples3453464 complete conversation examples showing how AI guides selection of correct skills: API testing, microservice testing, framework upgrade, TUnit evaluation.347348> 📖 For details, please refer to [references/conversation-examples.md](references/conversation-examples.md)349350---351352## Relationship with Fundamental Skills353354Advanced skills build upon fundamental skills:355356**Fundamental Testing Capabilities** → `dotnet-testing` (Fundamental Skill Set)357- Unit test fundamentals358- Test data generation359- Assertions and mocking360- Special scenario handling361362### ↓ Advanced Applications363364**Advanced Integration Testing** → `dotnet-testing-advanced` (This Skill Set)365- Web API integration testing366- Containerized testing367- Microservice testing368- Framework upgrades369370**Learning Recommendation**:371Complete the core skills of `dotnet-testing` fundamental skill set first, then enter this advanced skill set.372373---374375## Related Resources376377### Original Data Sources378379- **iThome Ironman Competition Series**: [Old School Software Engineer's Testing Practice - 30 Day Challenge](https://ithelp.ithome.com.tw/users/20066083/ironman/8276)380 🏆 2025 iThome Ironman Competition Software Development Group Champion381382- **Complete Sample Code**: [30Days_in_Testing_Samples](https://github.com/kevintsengtw/30Days_in_Testing_Samples)383 Contains executable code for all sample projects384385### Technical Requirements386387**Integration Testing Skills**:388- .NET 8+389- Docker Desktop390- WSL2 (Windows environment)391392**Aspire Testing Skills**:393- .NET 8+394- .NET Aspire Workload395- Docker Desktop396397---398399## Next Steps400401Choose the advanced skill that matches your needs to start learning, or tell me your specific situation and I will recommend the most suitable learning path!402403**Quick Start**:404- Want to test APIs → Start with `dotnet-testing-advanced-aspnet-integration-testing`405- Need real database → Start with `dotnet-testing-advanced-testcontainers-database`406- Microservice project → Use `dotnet-testing-advanced-aspire-testing`407- Framework upgrade → Use corresponding upgrade guide408- Unsure → Tell me your project situation and I will help you analyze409````