glog_test.cc 149 字节
Newer Older
Y
Yi Wang 已提交
1 2 3 4 5 6 7 8 9
#include <iostream>
#include <string>

#include "glog/logging.h"
#include "gtest/gtest.h"

TEST(GlogTest, Logging) {
  LOG(INFO) << "Hello world";
}