#include "ILog.h" #include "IHal.h" #include #include namespace IHalTest { // ../output_files/test/bin/IHalTest --gtest_filter=IHalTest.Demo TEST(IHalTest, Demo) { ILogInit(LOG_EASYLOGGING); create_hal_module(); StatusCode code = IHalInit(); if (IsCodeOK(code)) { PrintStringCode(code); } IHalUnInit(); destroy_hal_module(); ILogUnInit(); } }