Merge "DALi Version 1.1.42" into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / utc-Dali-TextSelectionPopup.cpp
1 /*
2  * Copyright (c) 2014 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
18 #include <iostream>
19 #include <stdlib.h>
20 #include <dali-toolkit-test-suite-utils.h>
21 #include <dali-toolkit/dali-toolkit.h>
22 #include <dali-toolkit/devel-api/controls/text-controls/text-selection-popup.h>
23
24 using namespace Dali;
25 using namespace Toolkit;
26
27 void dali_textselectionpopup_startup(void)
28 {
29   test_return_value = TET_UNDEF;
30 }
31
32 void dali_textselectionpopup_cleanup(void)
33 {
34   test_return_value = TET_PASS;
35 }
36
37 int UtcDaliToolkitTextSelectionPopupNewP(void)
38 {
39   ToolkitTestApplication application;
40   TextSelectionPopup textSelectionPopup;
41
42   DALI_TEST_CHECK( !textSelectionPopup );
43
44   textSelectionPopup = TextSelectionPopup::New( NULL );
45
46   DALI_TEST_CHECK( textSelectionPopup );
47   END_TEST;
48 }
49
50 int UtcDaliToolkitTextSelectionPopupConstructorP(void)
51 {
52   TextSelectionPopup textSelectionPopup;
53
54   DALI_TEST_CHECK( !textSelectionPopup );
55
56   END_TEST;
57 }
58
59 int UtcDaliToolkitTextSelectionPopupCopyConstructorP(void)
60 {
61   ToolkitTestApplication application;
62   TextSelectionPopup textSelectionPopup;
63
64   textSelectionPopup = TextSelectionPopup::New( NULL );
65   TextSelectionPopup copy( textSelectionPopup );
66
67   DALI_TEST_CHECK( copy == textSelectionPopup );
68
69   END_TEST;
70 }
71
72
73 int UtcDaliToolkitTextSelectionPopupDestructorP(void)
74 {
75   ToolkitTestApplication application;
76   TextSelectionPopup* textSelectionPopup = new TextSelectionPopup;
77   delete textSelectionPopup;
78
79   DALI_TEST_CHECK( true );
80
81   END_TEST;
82 }
83
84 int UtcDaliToolkitTextSelectionPopupAssignmentOperatorP(void)
85 {
86   ToolkitTestApplication application;
87   TextSelectionPopup textSelectionPopup;
88   textSelectionPopup = TextSelectionPopup::New(  NULL );
89   TextSelectionPopup copy;
90   copy = textSelectionPopup;
91
92   DALI_TEST_CHECK( copy == textSelectionPopup );
93   END_TEST;
94 }
95
96 int UtcDaliToolkitTextSelectionPopupDownCastP(void)
97 {
98   ToolkitTestApplication application;
99   TextSelectionPopup textSelectionPopup;
100   textSelectionPopup = TextSelectionPopup::New( NULL );
101
102   TextSelectionPopup cast = TextSelectionPopup::DownCast( textSelectionPopup );
103
104   DALI_TEST_CHECK( cast );
105
106   END_TEST;
107 }