1.

What Is Unit Testing (in Classical Terms)? What Is The Primary Technique When Writing A Test ?

Answer»

Unit testing, simply put, is testing methods -- the smallest unit in object-oriented programming. STRONG CANDIDATES will argue that it allows a developer to flesh out their API before it's consumed by other systems in the application.

The PRIMARY way to ACHIEVE this is to assert that the actual result of the method matches an expected result.

Unit testing, simply put, is testing methods -- the smallest unit in object-oriented programming. Strong candidates will argue that it allows a developer to flesh out their API before it's consumed by other systems in the application.

The primary way to achieve this is to assert that the actual result of the method matches an expected result.



Discussion

No Comment Found