RED phase - Write failing tests for a feature before implementation
Writes failing unit tests for a feature before implementation using AAA pattern.
/plugin marketplace add DoubleslashSE/claude-workflows/plugin install doubleslashse-dotnet-tdd-plugins-dotnet-tdd@DoubleslashSE/claude-workflowsDesign and write failing tests for: $ARGUMENTS
Analyze Requirements
Identify Test Scenarios
Write Failing Tests
{Method}_{Scenario}_{Expected}Verify Tests Fail
dotnet test[Fact]
public void MethodName_Scenario_ExpectedBehavior()
{
// Arrange - Set up preconditions
var sut = new SystemUnderTest();
// Act - Execute the behavior
var result = sut.MethodUnderTest();
// Assert - Verify outcome
Assert.Equal(expected, result);
}
Provide: