replace 'gst_element_get_request_pad' to 'gst_element_request_pad_simple'
[platform/core/multimedia/libmm-streamrecorder.git] / unittest / libmm_streamrecorder_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 "libmm_streamrecorder_unittest.h"
19
20 using ::testing::InitGoogleTest;
21 using ::testing::Test;
22 using ::testing::TestCase;
23
24 class libmm_streamrecorder_Test : public ::testing::Test {
25         protected:
26                 void SetUp() {
27                         std::cout << "SetUp()" << std::endl;
28                 }
29
30                 void TearDown() {
31                         std::cout << "TearDown()" << std::endl;
32                 }
33 };
34
35 TEST(libmm_streamrecorderTest, __srecorder_get_fourcc_p1)
36 {
37         EXPECT_EQ(1, 1);
38 }
39
40 int main(int argc, char **argv)
41 {
42         InitGoogleTest(&argc, argv);
43
44         return RUN_ALL_TESTS();
45 }