GREEN phase - Write minimal code to make failing tests pass
Writes minimal code to make failing tests pass for specified .NET test cases.
/plugin marketplace add DoubleslashSE/claude-marketplace/plugin install dotnet-tdd@doubleslash-pluginsWrite minimal code to make tests pass for: $ARGUMENTS
Identify Failing Tests
dotnet test to see failuresWrite Minimal Code
Run Tests
Repeat
Start simple, generalize as needed:
// Test expects specific value
Assert.Equal("Hello", greeter.GetGreeting());
// GREEN: Just return it
public string GetGreeting() => "Hello";
# Run all tests
dotnet test
# Run specific test
dotnet test --filter "FullyQualifiedName~{TestName}"
# Run with output
dotnet test --verbosity normal
Provide: