v0.4.0 - implement testF() and testingF() macros
- 0.4.0 (2018-03-30)
- Implement
testF()
andtestingF()
macros for using test fixtures. - Added
examples/fixture/
sample code. - Removed support for manual
Test
andTestOnce
test instances. Use
testF()
andtestingF()
macros instead. - Renamed
Test
andTestOnce
class hierarchy intoTestAgain
and
TestOnce
respectively, and made them siblings not parent/child. - Implement early return upon delayed failure (assertions check the test
status and return early). - Add ability to control verbosity on a per-test basis.
- Implement
Fixes #9.