Attention handler stringstream refactor

Signed-off-by: austinfcui <austinfcui@gmail.com>
Change-Id: Ifaacbe18aa87d73a5fd907cb8682c42726b040cc
diff --git a/test/meson.build b/test/meson.build
index 87449a7..8a17b52 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -202,3 +202,22 @@
 
 test(tc, exe, env: var)
 
+################################################################################
+
+tc = 'test-ti-handler'
+
+src = [
+  files(
+    tc + '.cpp',
+  ),
+]
+
+dep = [ gtest_dep ]
+
+var = [ ]
+
+exe = executable(tc.underscorify(), src, dependencies: dep,
+                 link_with : hwdiags_libs,
+                 cpp_args: test_arg, include_directories: incdir)
+
+test(tc, exe, env: var)