aboutsummaryrefslogtreecommitdiffstats
path: root/tests/logtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/logtest.cpp')
-rw-r--r--tests/logtest.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/logtest.cpp b/tests/logtest.cpp
new file mode 100644
index 00000000..9cd5288a
--- /dev/null
+++ b/tests/logtest.cpp
@@ -0,0 +1,14 @@
+#include <yage.h>
+
+#include <iostream>
+
+int main()
+{
+ gLog << "Hello World";
+ yage::Logger l;
+ l() << "Hello my name is Yann";
+ std::cout << "#####################\n";
+
+ gLog << "Yanananan";
+ gLog << "Remove the top element";
+}