Agent skill
unit-test-specialist
Expert guidance on unit testing for the Pomodoro Time Tracker. Activates when working with tests, test coverage, or testable code patterns.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/unit-test-specialist
SKILL.md
Unit Test Specialist
Activates when: Tests, unit tests, test coverage, or testable code mentioned.
Shared Testing Guidelines
@/.claude/prompts/dotnet/testing/aaa-pattern.md
@/.claude/prompts/dotnet/testing/test-naming.md
@/.claude/prompts/dotnet/testing/moq-cheatsheet.md
@/.claude/prompts/dotnet/testing/fluentassertions.md
Project-Specific
Framework Stack
- xUnit - Primary test framework (.NET 9)
- Moq - Mocking for interfaces
- FluentAssertions - Readable assertions
- EF Core InMemory - Repository testing
Test Structure (377 tests)
PomodoroTimeTracker.Tests/
├── ViewModels/ (158 tests)
│ ├── PomodoroViewModelTests.cs (60)
│ ├── RegularTimerViewModelTests.cs (40)
│ ├── StopWatchViewModelTests.cs (30)
│ └── ...
├── Application/Services/ (148 tests)
│ ├── PomodoroSessionServiceTests.cs
│ ├── AudioServiceTests.cs (35)
│ └── ...
└── Infrastructure/Repositories/ (71 tests)
ViewModel Test Pattern
public class ViewModelTests
{
private readonly Mock<IService> _service;
private readonly Mock<IDispatcherTimer> _timer;
private readonly ViewModel _viewModel;
public ViewModelTests()
{
_service = new Mock<IService>();
_timer = new Mock<IDispatcherTimer>();
_viewModel = new ViewModel(_service.Object, _timer.Object);
}
[Fact]
public void Property_WhenChanged_UpdatesDependentProperties()
{
// Arrange
var propertyChanges = new List<string>();
_viewModel.PropertyChanged += (s, e) => propertyChanges.Add(e.PropertyName!);
// Act
_viewModel.SomeProperty = "value";
// Assert
propertyChanges.Should().Contain("DependentProperty");
}
}
Service Test Pattern
public class ServiceTests : IDisposable
{
private readonly ApplicationDbContext _context;
private readonly Service _service;
public ServiceTests()
{
var options = new DbContextOptionsBuilder<ApplicationDbContext>()
.UseInMemoryDatabase(Guid.NewGuid().ToString())
.Options;
_context = new ApplicationDbContext(options);
_service = new Service(new UnitOfWork(_context));
}
public void Dispose()
{
_context.Database.EnsureDeleted();
_context.Dispose();
}
}
Coverage Targets
- 5-8 tests per public method
- Happy path + validation + edge cases
- 100% pass rate required
Update TEST_SUMMARY.md
When tests are added/modified, update TEST_SUMMARY.md with current counts.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?