Пример #1
0
void test_protocol_packege_suite()
{
	test_encode();
	test_decode();
	test_codec();
	test_uint32();
	test_package_init();
}
Пример #2
0
	int test()
	{
		int Error(0);

		Error += test_int32();
		Error += test_uint32();

		return Error;
	}
Пример #3
0
static void
test_storage(krb5_context context, krb5_storage *sp)
{
    test_int8(context, sp);
    test_int16(context, sp);
    test_int32(context, sp);
    test_uint8(context, sp);
    test_uint16(context, sp);
    test_uint32(context, sp);
}