Ejemplo n.º 1
0
void register_type_support_tests(Suite *s)
{
    TCase *tc = tcase_create("API input args tests");
    tcase_addtests(tc, tests);
    suite_add_tcase (s, tc);

}
Ejemplo n.º 2
0
void register_tests(Suite *s)
{
    TCase *tc = tcase_create("fwd_handling");
    tcase_addtests(tc, tests);
    suite_add_tcase (s, tc);
}
Ejemplo n.º 3
0
void register_public_api_tests(Suite *s)
{
    TCase *tc = tcase_create("mocked sscep tests");
    tcase_addtests(tc, tests);
    suite_add_tcase (s, tc);
}
Ejemplo n.º 4
0
void register_public_api_tests(Suite *s)
{
    TCase *tc = tcase_create("certificate parsing tests");
    tcase_addtests(tc, tests);
    suite_add_tcase (s, tc);
}
Ejemplo n.º 5
0
void register_json_tests(Suite *s)
{
    TCase *tc = tcase_create("json_parsing");
    tcase_addtests(tc, jsontests);
    suite_add_tcase (s, tc);
}
Ejemplo n.º 6
0
void register_device_api_tests(Suite *s)
{
	TCase *tc = tcase_create("platform API tests");
	tcase_addtests(tc, tests);
    suite_add_tcase(s, tc);
}