summaryrefslogtreecommitdiffhomepage
path: root/InfoEx/test/description.cpp
blob: e9f5120cee295bc767e994a4d1b806aca4b214c1 (plain)
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;
}