hammer/src/t_misc.c

17 lines
445 B
C
Raw Normal View History

2013-01-07 23:44:26 +01:00
#include <glib.h>
#include "test_suite.h"
#include "hammer.h"
static void test_tt_user(void) {
g_check_cmp_int32(TT_USER, >, TT_NONE);
g_check_cmp_int32(TT_USER, >, TT_BYTES);
g_check_cmp_int32(TT_USER, >, TT_SINT);
g_check_cmp_int32(TT_USER, >, TT_UINT);
g_check_cmp_int32(TT_USER, >, TT_SEQUENCE);
g_check_cmp_int32(TT_USER, >, TT_ERR);
2013-01-07 23:44:26 +01:00
}
void register_misc_tests(void) {
g_test_add_func("/core/misc/tt_user", test_tt_user);
}