Variable Name Conventions in Tests
Found a question about how to “best” write the tests for the Fizz Buzz kata. The author provides his approach and questions as a GitHub Gist. One interesting takeaway is his use of the name of his constants, e.g. anyNumberDivisibleBy3 = 3
. It expresses very well what kind of placeholder this number is supposed to be.