Test-Driven Development

Get introduced to test-driven development.

We'll cover the following...

Within the world of automated testing is a technique known as test-driven development ( TDD). TDD is the practice of writing a failing test for code first and then writing the code to get the test to pass.

Why TDD?

One benefit of TDD is that the tests are the first consumer of the code. The ...