unit test hello world

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: Ieb1122c911e3199555b78abb18fe5a4d474947cc
diff --git a/test/meson.build b/test/meson.build
new file mode 100644
index 0000000..76aa354
--- /dev/null
+++ b/test/meson.build
@@ -0,0 +1,7 @@
+tests = [
+  'hello-world',
+]
+
+foreach t : tests
+  test(t, executable(t.underscorify(), t + '.cpp'))
+endforeach