Merge "Adding initial structure for unittest" into tizen
[platform/core/multimedia/libmedia-service.git] / unittest / libmedia_service_unittest.cpp
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 #include "libmedia_service_unittest.h"
19 #include "media-util.h"
20 #include "media-svc.h"
21
22 using ::testing::InitGoogleTest;
23 using ::testing::Test;
24 using ::testing::TestCase;
25
26 class libmedia_service_Test : public ::testing::Test {
27         protected:
28                 void SetUp() {
29                         std::cout << "SetUp()" << std::endl;
30                 }
31
32                 void TearDown() {
33                         std::cout << "TearDown()" << std::endl;
34                 }
35 };
36
37 TEST(libmedia_service_Test, media_svc_connect_disconnect_p)
38 {
39         MediaSvcHandle *handle = NULL;
40         int ret = MS_MEDIA_ERR_NONE;
41
42         ret = media_svc_connect(&handle, getuid(), false);
43         EXPECT_EQ(ret, MS_MEDIA_ERR_NONE);
44
45         ret = media_svc_disconnect(handle);
46         EXPECT_EQ(ret, MS_MEDIA_ERR_NONE);
47 }
48
49 int main(int argc, char **argv)
50 {
51         InitGoogleTest(&argc, argv);
52
53         return RUN_ALL_TESTS();
54 }