...

/

FIRST: Properties of Good Tests

FIRST: Properties of Good Tests

Learn the principle of the FIRST acronym in writing good unit tests.

We'll cover the following...

FIRST principle

We can avoid many of the pitfalls that unit testers often fall into by following the FIRST principles of unit testing:

  • [F]ast: Unit tests should be fast
  • [I]
...