Skip to content

Latest commit

 

History

History
63 lines (37 loc) · 2.46 KB

testing.md

File metadata and controls

63 lines (37 loc) · 2.46 KB

Back to technical skills

Testing

Definition

A test is basically the proof of the expected behaviour of your software.

Common types

Unit test

  • Verify that given an input will expect an output, from a unit perspective.
  • A unit is the minimum scope of your code.
  • We could agree on a class behaviour or a function itself.
  • These tests must be independent of each other.
  • They cannot talk to the DB.

Integration test

  • It verifies the behaviour of multiple units together.
  • They can talk to the DB.

Functional / End-to-end / black-box test

  • These tests don't care about how but if the ending result of a total is the expected behaviour, without caring at all about any detail implementation.
  • They are independent of the DB.
  • The importance of these tests is that they are completely agnostic from the software which is running the production result.

Frameworks

There are plenty of frameworks to write tests, but I will encourage you to first master the most popular one: PHPUnit. Once you know this one, you will be able to learn any other testing-tool without any problem. Mostly, because almost all of them are based on this one.

Cohn Pyramid

  • The more integrational test -> the slower it will be.
  • The more isolated test -> the faster it will be.

Methodologies

Test-Last

These tests are implemented after the final/production code was written.

Test-First

These tests are implemented before start writing the final/production code.

Test-Driven Development (TDD)

Similar to Test-First, with the important remark that the tests will help you to define and refactor the production code while you are implementing the final result. TDD helps you to design an easily testable code because the production code and its tests are written in parallel.

References

Books

  • Testing y TDD para PHP (Leanpub) (Github) [Spanish] by Fran Iglesias
  • Working Effectively with Legacy Code (Amazon) [English] by Feathers Michael

Medium Posts