tdd-katas/test
fiatcode ebaa21ca27 RED: Test exposing comma-delimited summation bug
- Test expects '1,2' to return 3
- Currently returns 1 (missing last element)
- Summation loop has off-by-one: for (i < length - 1)
- Expected: <3>, Actual: <1>
- Expected: <6>, Actual: <3>
2026-02-18 12:56:53 +07:00
..
bowling_game_test.dart REFACTOR: break down the logic into dedicated methods, tests cleaned up 2026-02-10 12:43:42 +07:00
gilded_rose_test.dart RED: add tests for conjured items 2026-02-18 12:41:33 +07:00
roman_numerals_test.dart RED: test roman numerals contraints 2026-02-10 09:33:44 +07:00
string_calculator_test.dart RED: Test exposing comma-delimited summation bug 2026-02-18 12:56:53 +07:00