2 Comments
May 2, 2023Liked by Luca Rossi

How would one differentiate unit tests from static tests, since they operate on a granular level?

Expand full comment
author

Static testing is usually done automatically, directly inside the IDE, when you use static typed languages like Typescript or Java.

Unit testing is about tests that you write yourself, for atomic *units* of code, like functions or small components.

Expand full comment