Hi there 👋

I’m Toby, this is where I rant about my software engineering journey.

Everything about testing

F.I.R.S.T principles of good test Fast Because we are going run tests very often when practicing TDD, each test should run under 1 second. Otherwise it would be unproductive. To achieve that, we should avoid using e.g Spring tests since the time to boot up is quite long. Isolated Tests do not depend upon each other. One test should run independently from all other tests. Every tests can be run in any order....

August 27, 2021 Â· 1 min Â· Toby