summaryrefslogtreecommitdiffstats
path: root/tests/tests.h
Commit message (Collapse)AuthorAgeFilesLines
* [tests] improve checking for log outputBenjamin Dauvergne2011-12-161-0/+70
| | | | | | | | | | | - now any non expected log output is considered an error, by setting a g_log default handler. - block_lasso_logs()/unblock_lasso_logs() will block logging output at the DEBUG level - begin_check_do_log(level, message, endswith)/end_check_do_log() with check that the only message emitted between the two macros is one equals to "message" at the level "level", or ending (to work around variable parts in a log message) with "message" if "endswith" is True.
* Tests: show actual value in check_equals test macroBenjamin Dauvergne2010-04-061-1/+1
|
* Tests: add macros to test for string equalityBenjamin Dauvergne2010-03-271-0/+12
|
* Tests: add macros check_equals and check_not_equalsBenjamin Dauvergne2010-03-271-0/+14
|
* in tests/tests.h, Add checks for true and false conditionsBenjamin Dauvergne2009-12-081-4/+10
|
* Add SP initiated logout test to SAML 2.0 regression testsBenjamin Dauvergne2009-12-011-0/+43
* tests/login_tests_saml2.c: add logout to first SAML 2.0 login regression test. * tests/tests.h: add macros to simplify checking of return value with check macros (encapsulate fail_unless macro to check for NULL/non-NULL values and good rc value (0) or expected bad value).