2018-10-23 20:41:44 +03:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
|
|
|
/* tests.h :+: :+: :+: */
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
/* Created: 2018/10/23 19:36:58 by gtertysh #+# #+# */
|
|
|
|
/* Updated: 2018/10/23 19:40:12 by gtertysh ### ########.fr */
|
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
2018-10-09 11:42:59 +03:00
|
|
|
|
2018-10-23 20:41:44 +03:00
|
|
|
#ifndef TESTS_H
|
|
|
|
# define TESTS_H
|
2018-10-09 11:42:59 +03:00
|
|
|
|
2018-10-23 20:41:44 +03:00
|
|
|
# define MUNIT_ENABLE_ASSERT_ALIASES
|
|
|
|
# include "munit.h"
|
2018-10-09 11:42:59 +03:00
|
|
|
|
2018-10-23 20:41:44 +03:00
|
|
|
MunitResult should_init_ctx(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult update_should_change_count(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult decode_string_to_int(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult encode_bits_to_string(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult encode_register(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult create_digest(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult create_string(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult should_init_ctx_sha256(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult decode_string_to_int_sha256(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult encode_len_to_string_sha256(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult encode_register_to_string_sha256(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult update_bit_count_sha256(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult fill_buffer_sha256(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult add_right_padding_sha256(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult compute_digest_sha256(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult create_digest_string_sha256(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult should_init_ctx_sha224(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult compute_digest_sha224(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
|
|
|
MunitResult create_digest_string_sha224(const MunitParameter test_params[],
|
|
|
|
void *test_data);
|
2018-10-21 20:46:05 +03:00
|
|
|
|
2018-10-23 20:41:44 +03:00
|
|
|
#endif
|