#include "ILog.h" // #include #include namespace ILogTest { // ../out/test/bin/ILogTest --gtest_filter=LogCTest.Demo TEST(ILogTest, Demo) { CreateLogModule(); ILogInit(LOG_INSTANCE_TYPE_END); LogInfo("hello world."); LogError("create ... failed."); LogDebug("a = %d b = %s", 124, "apple"); IHalUnInit(); DestroyLogModule(); } } // namespace ILogTest