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