About
Language - Assertion in a code testing context.
Not to confound with assertion that are written in the code, this assertions are written in the test method only and are part of a test framework.
.
An assertion library helps you write your result expectation of a code in a unit test between:
- the value that you get from your function
- and the value that you expects.
This is the second component of a test framework.
Articles Related
List non-exhaustive
- http://hamcrest.org/ (with many port in a lot of language) - used by vertx