String calculator TDD exercise
You will implement a simple string calculator with TDD principles in mind. We will use a similar CI/CD process to last lecture. https://codingdojo.org/kata/StringCalculator/
To get started:
- One team member must fork this project.
- Make sure you invite all your other teammates as collaborators
- Enable Github issues, Go to the Settings page of your fork. Check the box next to Issues
- Add at least 3 of the issues listed in the Kata, example:
Allow the add method to handle newlines as separators:
- "1\n2,3" should return "6".
- "175.2,\n35" is invalid and should return the message "Number expected but '\n' found at position 6."
- Start working on the issues, create a branch for each issue
- Submit pull requests to merge into main on your fork. Make sure CI/CD tests are passing