#include #include extern "C" bool test_single_hash_sha512_01(void); #if defined(TYP_TEST_GoogleTest) TEST(Mt_Crypto_Test_01_Crypto, Mt_Crypto_Test_01_Crypto) #endif #if defined(TYP_TEST_CUnit) extern "C" void Mt_Crypto_Test_01_Crypto(void) #endif { bool result_is_ok = true; result_is_ok &= test_single_hash_sha512_01(); AL_UNITTEST_CHECK(result_is_ok, true, == ); } #if defined(TYP_TEST_CUnit) extern "C" void ALUnitTest_AddTests(void) { ALUnitTest_AddFunction("Mt_Crypto_Test_01_Crypto" , Mt_Crypto_Test_01_Crypto); } #endif