Add systemd service
[platform/core/connectivity/asp-manager.git] / unittest / asp-manager-test.cpp
1 #include <gmock/gmock.h>
2 #include <gtest/gtest.h>
3
4 #include "asp-manager.h"
5
6 using ::testing::EmptyTestEventListener;
7 using ::testing::InitGoogleTest;
8 using ::testing::Test;
9 using ::testing::TestCase;
10 using ::testing::TestEventListeners;
11 using ::testing::TestInfo;
12 using ::testing::TestPartResult;
13 using ::testing::UnitTest;
14
15 TEST(asp_manager, __asp_manager_load_unload_p)
16 {
17         int ret = 0;
18         ret = asp_manager_load();
19         ASSERT_EQ(ret, 0);
20         asp_manager_unload();
21         ASSERT_TRUE(1);
22 }