apply FSL(Flora Software License)
[framework/messaging/msg-service.git] / TC / msgTC / MapiMessage / utc_msg_new_message.c
1  /*
2   * Copyright 2012  Samsung Electronics Co., Ltd
3   *
4   * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
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 "utc_msg_new_message.h"
18
19 static MSG_HANDLE_T msgHandle = NULL;
20 msg_message_t msgInfo;
21
22 void startup(void)
23 {
24         MSG_ERROR_T err = MSG_SUCCESS;
25
26         err = msg_open_msg_handle(&msgHandle);
27         if (err != MSG_SUCCESS)
28         {
29                 tet_result(TET_FAIL);
30                 return;
31         }
32 }
33 void cleanup(void)
34 {
35         msg_close_msg_handle(&msgHandle);
36 }
37
38 void utc_msg_new_message_001()
39 {
40         MSG_ERROR_T err = MSG_SUCCESS;
41
42         msgInfo = msg_new_message();
43         if (err != MSG_SUCCESS)
44         {
45                 tet_result(TET_FAIL);
46                 return;
47         }
48
49         tet_result(TET_PASS);
50 }
51
52 void utc_msg_new_message_002()
53 {
54         MSG_ERROR_T err = -1;
55
56         msgInfo = msg_new_message();
57         if (err != MSG_SUCCESS)
58         {
59                 tet_result(TET_PASS);
60                 return;
61         }
62
63         tet_result(TET_FAIL);
64 }