Can we use JUnit and TDD for Testing?

JUnit and TDD for Testing

5 minute read - Java Test Automation

TLDR; JUnit is an execution framework. The principles of TDD are about writing code, seeing it fail, writing code to make it pass, seeing it pass and making it better. All applies when writing automated execution code for Testing


Unit Testing FAQs and Lessons Learned

Unit Testing FAQs

15 minute read - Java

TLDR; Unit Testing and Code Coverage can lead to emotive discussions. These are personal lessons learned around Unit Testing and TDD. Keep things simple. Keep refactoring. View Test and Main as symbiotic.