1 min readOct 21, 2019
Thanks a lot for the comment! “Unit testing” is a method where units (methods/functionality) are tested individually and within isolation, “test driven development” is a process whereby you write tests before writing your code and then only write enough code to get your test to pass, then refactoring it. The one is a method for writing small pieces of testable code while the other is a process for only writing enough code to get your tests to pass.