summaryrefslogtreecommitdiff
path: root/libhello/tests/test/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libhello/tests/test/driver.cxx')
-rw-r--r--libhello/tests/test/driver.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/libhello/tests/test/driver.cxx b/libhello/tests/test/driver.cxx
index 38937f0..1c08bca 100644
--- a/libhello/tests/test/driver.cxx
+++ b/libhello/tests/test/driver.cxx
@@ -1,11 +1,14 @@
// file: tests/test/driver.cxx -*- C++ -*-
#include <libhello/hello.hxx>
+#include <libformat/format.hxx> // volume
int
main ()
{
- using hello::say;
+ using namespace hello;
say ("World");
+ say ("World", format::volume::loud);
+ say_formatted ("Hi, World!");
}