1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include <gtest/gtest.h> #include <iostream> #include <InfoEx.h> TEST(InfoEx, ShortDescription) { std::cout << InfoEx::ShortDescription() << std::endl; } TEST(InfoEx, LongDescription) { std::cout << InfoEx::LongDescription() << std::endl; }