Test Driven Development in Julia

By: julia on Abel Soares Siqueira

Re-posted from: https://abelsiqueira.com/blog/2016-03-13-test-driven-development-in-julia/

First, what is Test Driven Development (TDD)? Well, I’m not an expert, so don’t quote me, but in practice it means that you develop your code to fulfill tests that you define prior to beginning your work. You do not define all your tests first, though. You define a single test, and produce code to pass it. Then you define another code, and produce code to pass both. And so forth until you complete your specification.