Initialize Tizen 2.3
[framework/appfw/app-core.git] / TC / unit / utc_ApplicationFW_appcore_exit_func.c
1 /*
2  *  app-core
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 #include <tet_api.h>
22 #include <appcore-common.h>
23
24 static void startup(void);
25 static void cleanup(void);
26
27 void (*tet_startup)(void) = startup;
28 void (*tet_cleanup)(void) = cleanup;
29
30 static void utc_ApplicationFW_appcore_exit_func_01(void);
31
32 enum {
33         POSITIVE_TC_IDX = 0x01,
34         NEGATIVE_TC_IDX,
35 };
36
37 struct tet_testlist tet_testlist[] = {
38         { utc_ApplicationFW_appcore_exit_func_01, POSITIVE_TC_IDX },
39         { NULL, 0},
40 };
41
42 static void startup(void)
43 {
44 }
45
46 static void cleanup(void)
47 {
48 }
49
50 /**
51  * @brief Positive test case of appcore_exit()
52  */
53 static void utc_ApplicationFW_appcore_exit_func_01(void)
54 {
55         appcore_exit();
56         tet_result(TET_PASS);
57 }
58