f140a0d6c79b63f56de8baf5caf1c6295679eb48
[platform/core/appfw/appcore-widget.git] / test / unit_tests / mock / appcore_multiwindow_base_mock.cc
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
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 #include "unit_tests/mock/appcore_multiwindow_base_mock.h"
18
19 #include <gio/gio.h>
20
21 #include "unit_tests/mock/mock_hook.h"
22 #include "unit_tests/mock/test_fixture.h"
23
24 extern "C" int appcore_multiwindow_base_init(
25         appcore_multiwindow_base_ops ops, int argc, char **argv, void *data) {
26   return MOCK_HOOK_P4(MultiWindowBaseMock, appcore_multiwindow_base_init,
27         ops, argc, argv, data);
28 }
29
30 extern "C" const char *appcore_multiwindow_base_instance_get_id(
31         appcore_multiwindow_base_instance_h context) {
32   return MOCK_HOOK_P1(MultiWindowBaseMock,
33         appcore_multiwindow_base_instance_get_id, context);
34 }
35
36 extern "C" void *appcore_multiwindow_base_instance_get_extra(
37         appcore_multiwindow_base_instance_h context) {
38   return MOCK_HOOK_P1(MultiWindowBaseMock,
39         appcore_multiwindow_base_instance_get_extra, context);
40 }
41
42 extern "C" const char* appcore_multiwindow_base_instance_get_class_id(
43         appcore_multiwindow_base_instance_h context) {
44   return MOCK_HOOK_P1(MultiWindowBaseMock,
45         appcore_multiwindow_base_instance_get_class_id, context);
46 }