Skip to content

DocAigor/StringCalculatorTdd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

StringCalculatorTdd

TDD Kata

Create a simple StringCalculator with a method Resolve.
The method can take a string of 1 or more number (comma separated), and will return their sum (for an empty string it will return 0).
Characters different from numbers should be ignored, so adding a+3+b+1=4.
Next, create a system that Save the history of the Resolve method.