summaryrefslogtreecommitdiff
path: root/libformat/tests/test/driver.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-07-20 08:51:52 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-07-20 08:51:52 +0200
commit28b92b59909030424420fefbca5a3f5df22337b5 (patch)
tree944313244a0f6319211152dc14e6740d99f75d54 /libformat/tests/test/driver.cxx
parentef4070dd12a9aedec805003beaad3816ca4dc3f4 (diff)
Make slightly more interesting
Diffstat (limited to 'libformat/tests/test/driver.cxx')
-rw-r--r--libformat/tests/test/driver.cxx5
1 files changed, 4 insertions, 1 deletions
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;
}