From 65a298e7415e6785d30681cf0cb9aae0e4965fbe Mon Sep 17 00:00:00 2001 From: Mitya Selivanov <0x7fffff@guattari.ru> Date: Mon, 8 Aug 2022 04:33:27 +0400 Subject: Refactor --- source/kit_test/test.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'source/kit_test/test.h') diff --git a/source/kit_test/test.h b/source/kit_test/test.h index 9c2fea9..f8e79dc 100644 --- a/source/kit_test/test.h +++ b/source/kit_test/test.h @@ -6,7 +6,6 @@ extern "C" { #endif #include -#include #ifndef KIT_TEST_FILE # define KIT_TEST_FILE kit_test @@ -20,17 +19,13 @@ extern "C" { # define KIT_TEST_ASSERTIONS_LIMIT 0x50 #endif -#ifndef KIT_TEST_STRING_SIZE -# define KIT_TEST_STRING_SIZE 0x100 -#endif - typedef void (*kit_test_report_fn)(int test_index, char const *file, int line, int ok); typedef void (*kit_test_run_fn)( int kit_test_index_, kit_test_report_fn kit_test_report_fn_); typedef struct { - char test_name[KIT_TEST_STRING_SIZE]; + char const *test_name; kit_test_run_fn test_fn; int assertions; char const *file[KIT_TEST_ASSERTIONS_LIMIT]; -- cgit v1.2.3