Comment on FizzBuzz Enterprise EditionComments−peeters11yThe sad part is that there is actually an advantage to abstracting out the printing of fizz and buzz, and that is it will be easier to test. But the authors didn't even swap in a testable printing strategy, they just changed System.out.−coldtea11ySome things it's better NOT to test, rather than create an overengineered mess to facilitate testing.Sometimes a fuzzbuzz is just a fuzzbuzz. A.k.a: KISS, YAGNI, etc...−alxndr11ySend a pull request!
Comments
The sad part is that there is actually an advantage to abstracting out the printing of fizz and buzz, and that is it will be easier to test. But the authors didn't even swap in a testable printing strategy, they just changed System.out.
Some things it's better NOT to test, rather than create an overengineered mess to facilitate testing.
Sometimes a fuzzbuzz is just a fuzzbuzz. A.k.a: KISS, YAGNI, etc...
Send a pull request!