2015-09-07 02:00:03 +02:00
|
|
|
#include <criterion/criterion.h>
|
|
|
|
|
2016-09-05 21:32:57 +02:00
|
|
|
void setup_suite(void)
|
|
|
|
{
|
2015-09-07 02:00:03 +02:00
|
|
|
}
|
|
|
|
|
2016-09-05 21:32:57 +02:00
|
|
|
void teardown_suite(void)
|
|
|
|
{
|
2015-09-07 02:00:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TestSuite(suite1, .init = setup_suite, .fini = teardown_suite);
|
|
|
|
|
|
|
|
Test(suite1, test) {
|
|
|
|
cr_assert(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Test(suite2, test) {
|
|
|
|
cr_assert(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
TestSuite(disabled, .disabled = true);
|
|
|
|
|
2016-09-05 21:32:57 +02:00
|
|
|
Test(disabled, test) {
|
|
|
|
}
|