DEV Community

Discussion on: TDD, a non-technical intro

Collapse
 
kreely profile image
Dave Creelman • Edited

TDD, so useful. Kind of a backbone to CI/CD. Thanks for this.
In Delphi, tests can be done using DUnit (based I think on JUnit from back in the day).
Run all the tests before each build of a product (run them automatically each night if you can).
Designing with testing in mind changes the whole architecture of a solution in a good way.

Collapse
 
theowlsden profile image
Shaquil Maria

TDD, so useful. Kind of a backbone to CI/CD. Thanks for this.

Yes! That's the end goal, create tests that would run automatically before you build for production.

In Delphi, tests can be done using DUnit

Alright, good to know🤔 I think for most language the primary tool is the name+Unit😅😂

Designing with testing in mind changes the whole architecture of a solution in a good way.

Preach!