summaryrefslogtreecommitdiffhomepage
path: root/InfoEx/test/description.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'InfoEx/test/description.cpp')
-rw-r--r--InfoEx/test/description.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/InfoEx/test/description.cpp b/InfoEx/test/description.cpp
new file mode 100644
index 0000000..e9f5120
--- /dev/null
+++ b/InfoEx/test/description.cpp
@@ -0,0 +1,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;
+}