test: add simple aio case

Add a simple test case to confirm we can successfully create an
asio::object_server.

Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: I3cee879850a41b2dd8750e724c6e65c00aded308
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/test/bus/aio.cpp b/test/bus/aio.cpp
new file mode 100644
index 0000000..e1f4d4e
--- /dev/null
+++ b/test/bus/aio.cpp
@@ -0,0 +1,16 @@
+#include <sdbusplus/asio/object_server.hpp>
+#include <sdbusplus/bus.hpp>
+
+#include <gtest/gtest.h>
+
+constexpr auto this_name = "xyz.openbmc_project.sdbusplus.test.Aio";
+
+TEST(AioTest, BasicTest)
+{
+    boost::asio::io_service io;
+    auto systemBus = std::make_shared<sdbusplus::asio::connection>(io);
+    EXPECT_NE(nullptr, systemBus);
+
+    systemBus->request_name(this_name);
+    sdbusplus::asio::object_server objectServer(systemBus);
+}
diff --git a/test/meson.build b/test/meson.build
index 59e17bb..6905d67 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -6,6 +6,7 @@
 tests = [
     'bus/list_names',
     'bus/match',
+    'bus/aio',
     'exception/sdbus_error',
     'message/append',
     'message/read',