2015-03-23 20:55:16 +01:00
|
|
|
#include <criterion/criterion.h>
|
|
|
|
|
|
|
|
void setup_suite(void) {
|
|
|
|
}
|
|
|
|
|
2015-04-12 16:38:14 +02:00
|
|
|
void teardown_suite(void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
TestSuite(suite1, .init = setup_suite, .fini = teardown_suite);
|
2015-03-23 20:55:16 +01:00
|
|
|
|
|
|
|
Test(suite1, test) {
|
2015-04-25 16:48:34 +02:00
|
|
|
cr_assert(1);
|
2015-03-23 20:55:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Test(suite2, test) {
|
2015-04-25 16:48:34 +02:00
|
|
|
cr_assert(1);
|
2015-03-23 20:55:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TestSuite(disabled, .disabled = true);
|
|
|
|
|
|
|
|
Test(disabled, test) {}
|