/* Copyright (c) 2009-2018 Dovecot authors, see the included COPYING file */
#include "test-lib.h"
#include "buffer.h"
#include "str.h"
#include "hex-binary.h"
static void test_binary_to_hex(void)
{
test_begin("binary to hex");
test_end();
test_begin("binary to hex ucase");
test_end();
test_begin("binary to hex ucase");
test_end();
}
static void test_hex_to_binary(void)
{
static const char *error_input[] = {
"00 01",
"0x01",
"0g"
};
unsigned int i;
test_begin("hex to binary");
for (i = 0; i < N_ELEMENTS(error_input); i++)
test_end();
}
void test_hex_binary(void)
{
}