From 28b92b59909030424420fefbca5a3f5df22337b5 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 20 Jul 2017 08:51:52 +0200 Subject: Make slightly more interesting --- libformat/tests/test/driver.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libformat/tests/test/driver.cxx') diff --git a/libformat/tests/test/driver.cxx b/libformat/tests/test/driver.cxx index fb2939d..1cf2959 100644 --- a/libformat/tests/test/driver.cxx +++ b/libformat/tests/test/driver.cxx @@ -8,6 +8,9 @@ int main () { using namespace std; + using namespace format; - cout << format ("Hello", "World") << endl; + cout << message ("Hello", "World", volume::quiet) << endl; + cout << message ("Hello", "World", volume::normal) << endl; + cout << message ("Hello", "World", volume::loud) << endl; } -- cgit v1.1