#ifndef INC_TEST_LIB_COLOR_H #define INC_TEST_LIB_COLOR_H #include #ifndef TEST_RESULT #define TEST_RESULT(result,n,n_success) _TEST_RESULT("LIB/COLOR",result,n,n_success) #endif #include bool_t test_color_zero(uint8_t* color1, size_t channels, bool_t result); bool_t test_color_equal(uint8_t* color1, uint8_t* color2, size_t channels, bool_t result); // Meta test function bool_t TEST_lib_color(); #endif