Set-up

This Kata comes from Roy Osherove’s String Calculator. This is similar to the last kata in that it allows you to work through the steps of refactoring through TDD.

Instructions from Roy’s Kata:

Before you start:

String Calculator

  1. Create a simple String calculator with a method int Add(string numbers) 1.The method can take 0, 1 or 2 numbers, and will return their sum (for an empty string it will return 0) for example “” or “1” or “1,2”
  2. Start with the simplest test case of an empty string and move to 1 and two numbers
  3. Remember to solve things as simply as possible so that you force yourself to write tests you did not think about
  4. Remember to refactor after each passing test.
    1. Allow the Add method to handle an unknown amount of numbers
    2. Allow the Add method to handle new lines between numbers (instead of commas). 1.the following input is ok:  “1\n2,3”  (will equal 6)
    3. the following input is NOT ok:  “1,\n” (not need to prove it – just clarifying)
  5. Support different delimiters [1.to][2] change a delimiter, the beginning of the string will contain a separate line that looks like this:   “//[delimiter]\n[numbers…]” for example “//;\n1;2” should return three where the default delimiter is ‘;’ .
  6. the first line is optional. all existing scenarios should still be supported
  7. Calling Add with a negative number will throw an exception “negatives not allowed” – and the negative that was passed.if there are multiple negatives, show all of them in the exception message

——————————————————————————–

If you would like to see the rest of the Kata check it out here

——————————————————————————–

My Thoughts

The ternary (?) is a good way to limit Code.


private char UserInputDelimiter(string userInput)
{
     if (userInput.Contains("//"))
     {
           return char.Parse(userInput.Substring(2, 1));
     }
     else
     {
           return ',';
     }
}

VS.


private char UserInputDelimiter(string userInput)
{
      return   userInput.Contains("//") ?  char.Parse(userInput.Substring(2, 1)) : ',';
}

I started to wonder are my Test Method names getting an out of control (too long)?

ReturnExceptionMessageforMultipleNegativeNumbersAndWholeNumbersWithDifferentDelimiters () —- Yep, that is long.

I don’t think so. The detailed names helped me figure out where my issues where. Not sure if there is a specific naming convention for Test Methods, but I think I will continue to use detailed names.

Also, re-factoring between testing is important, and I should think about it more. Just being honest with myself.