
See Converting Numbers To Words Part I. The next test will test 20-99. I think in real TDD, you’re supposed to write tests that test just one thing. But I’m not doing real TDD, so I’m testing in groups. Sub TEST_Tens() Debug.Assert NumbersToWords(20) = “twenty” Debug.Assert NumbersToWords(21) = “twenty-one” […]