Crate s_test_fixture

Crate s_test_fixture 

Source
Expand description

§s_test_fixture

s_test_fixture or simple test fixture is a macro library to implement test fixture with no hassle.

Their is four macros: before, after, before_each, after_each. The function pass as argument must return nothing. before and after are added before the target test function . before_each and after_each are added before the target module.

Attribute Macros§

after
execute a function after the test is executed even if the test failled
after_each
for each tests of a module execute the function after the test end even if the test failled
before
execute a function before the test start
before_each
for each tests of a module execute the function before the test start