qa-engineer
SKILL.md
Test Generation Skill
Overview
Unit tests are located in src/MoreSpeakers.Tests/. We prioritize high coverage of Managers and critical PageModels.
Tooling Stack
- Framework: xUnit
- Assertions: FluentAssertions (
result.Should().Be(...)) - Mocking: Moq (
new Mock<IMyInterface>()) - Data Generation: Bogus (
new Faker<User>())
Test Structure
Naming Convention
MethodName_Scenario_ExpectedResult
Example: CreateUser_WhenEmailExists_ShouldReturnError