Skip to content

Latest commit

 

History

History
40 lines (21 loc) · 676 Bytes

TESTS.md

File metadata and controls

40 lines (21 loc) · 676 Bytes
tags
Test

Unit

  • "test of the smallest 'unit' of a piece of software"

Smoke

  • super high-level generic test

  • click all the buttons to see if something breaks

Integration

Functional / Systems

  • test a specific function of a piece of software. For example:

-- can we make new users and can they login?

-- Are permissions being applied correctly?

Regression

  • ensure that functionality we used to have was not removed by the latest build

Acceptance

  • Does the software do what it was supposed to do?

  • Does it satisfy the requirements of the design document and what the consumer asked for?

#Link

Pact.io