blob: f97b26dac336faaef0326b06eb05e3ec3f82511e [file] [log] [blame]
#include <boost/asio/io_service.hpp>
#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);
}