summaryrefslogtreecommitdiff
path: root/libformat/tests/test/driver.cxx
diff options
context:
space:
mode:
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;
}