Monday 3-2-1 β Edition #49
How would one differentiate unit tests from static tests, since they operate on a granular level?
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.
How would one differentiate unit tests from static tests, since they operate on a granular level?
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.