SimGrid
3.13
Versatile Simulation of Distributed Systems
|
Unit testing implementation (see Adding unit tests) More...
Macros | |
#define | XBT_TEST_SUITE(suite_name, suite_title) |
Provide informations about the suite declared in this file. More... | |
#define | XBT_TEST_UNIT(name, func, title) |
Declare a new test units (containing individual tests) More... | |
#define | xbt_test_add(...) |
Declare that a new test begins (printf-like parameters, describing the test) More... | |
#define | xbt_test_fail(...) |
Declare that the lastly started test failed (printf-like parameters, describing failure cause) More... | |
#define | xbt_test_assert(...) |
The lastly started test is actually an assert. More... | |
#define | _xbt_test_assert_ARG1(cond) _xbt_test_assert_CHECK(cond, "%s", #cond) |
#define | _xbt_test_assert_ARGN(cond, ...) _xbt_test_assert_CHECK(cond, __VA_ARGS__) |
#define | _xbt_test_assert_CHECK(cond, ...) do { if (!(cond)) xbt_test_fail(__VA_ARGS__); } while (0) |
#define | xbt_test_log(...) |
Report some details to help debugging when the test fails (shown only on failure) More... | |
Functions | |
void | _xbt_test_add (const char *file, int line, const char *fmt,...) XBT_ATTRIB_PRINTF(3 |
void void | _xbt_test_fail (const char *file, int line, const char *fmt,...) XBT_ATTRIB_PRINTF(3 |
void void void | _xbt_test_log (const char *file, int line, const char *fmt,...) XBT_ATTRIB_PRINTF(3 |
void | xbt_test_exception (xbt_ex_t e) |
Declare that the lastly started test failed because of the provided exception. More... | |
void | xbt_test_expect_failure (void) |
Declare that the lastly started test was expected to fail (and actually failed) More... | |
void | xbt_test_skip (void) |
Declare that the lastly started test should be skiped today. More... | |
Unit testing implementation (see Adding unit tests)
This module is mainly intended to allow the tests of SimGrid itself and may lack the level of genericity that you would expect as a user. Only use it in external projects at your own risk (but it works rather well for us). We play with the idea of migrating to an external solution for our unit tests, possibly offering more features, but having absolutely no dependencies is a nice feature of SimGrid (and this code is sufficient to cover our needs, actually, so why should we bother switching?)
Unit testing is not intended to write integration tests. Please refer to Adding integration tests for that instead.
#define XBT_TEST_SUITE | ( | suite_name, | |
suite_title | |||
) |
Provide informations about the suite declared in this file.
Actually, this macro is only used by the script extracting the test units, but that should be transparent for you.
suite_name | the short name of this suite, to be used in the –tests argument of testall afterward. Avoid spaces and any other strange chars |
suite_title | instructive title that testall should display when your suite is run |
#define XBT_TEST_UNIT | ( | name, | |
func, | |||
title | |||
) |
Declare a new test units (containing individual tests)
name | the short name that will be used in test all to enable/disable this test |
func | a valid function name that will be used to contain all code of this unit |
title | human informative description of your test (displayed in testall) |
#define xbt_test_add | ( | ... | ) |
Declare that a new test begins (printf-like parameters, describing the test)
#define xbt_test_fail | ( | ... | ) |
Declare that the lastly started test failed (printf-like parameters, describing failure cause)
#define xbt_test_assert | ( | ... | ) |
The lastly started test is actually an assert.
#define _xbt_test_assert_ARG1 | ( | cond | ) | _xbt_test_assert_CHECK(cond, "%s", #cond) |
#define _xbt_test_assert_ARGN | ( | cond, | |
... | |||
) | _xbt_test_assert_CHECK(cond, __VA_ARGS__) |
#define _xbt_test_assert_CHECK | ( | cond, | |
... | |||
) | do { if (!(cond)) xbt_test_fail(__VA_ARGS__); } while (0) |
#define xbt_test_log | ( | ... | ) |
Report some details to help debugging when the test fails (shown only on failure)
void _xbt_test_add | ( | const char * | file, |
int | line, | ||
const char * | fmt, | ||
... | |||
) |
Declare that the lastly started test failed because of the provided exception.
Declare that the lastly started test was expected to fail (and actually failed)