Merge changes I2df640e0,Ia1188305,I7fae506e,I7967a7cc,Ib0fdcdf4, ... into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit-internal / utc-Dali-TextSelectionPopup-internal.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 <dali-toolkit-test-suite-utils.h>
19 #include <dali-toolkit/dali-toolkit.h>
20 #include <dali-toolkit/devel-api/controls/text-controls/text-selection-popup.h>
21
22 // THIS IS THE HEADER WE ARE TESTING
23 #define private public // To access private members of class, just in the internal test cases
24 #include <dali-toolkit/internal/controls/text-controls/text-selection-popup-impl.h>
25 #undef private
26
27 #include <automated-tests/src/dali-toolkit-internal/dali-toolkit-test-utils/dbus-wrapper.h>
28
29 using namespace Dali;
30 using namespace Toolkit;
31
32 void dali_textselectionpopupinternal_startup(void)
33 {
34   test_return_value = TET_UNDEF;
35   DBusWrapper::Install(std::unique_ptr<DBusWrapper>(new TestDBusWrapper));
36 }
37
38 void dali_textselectionpopupinternal_cleanup(void)
39 {
40   test_return_value = TET_PASS;
41 }
42
43 int UtcDaliToolkitTextSelectionPopupIconPropertiesN(void)
44 {
45   ToolkitTestApplication application;
46   TextSelectionPopup popup = TextSelectionPopup::New(nullptr);
47
48   Toolkit::Internal::TextSelectionPopup& popupImpl = GetImpl(popup);
49   DALI_TEST_EQUALS(std::string(), popupImpl.GetButtonImage(Toolkit::TextSelectionPopup::NONE), TEST_LOCATION);
50   DALI_TEST_EQUALS(std::string(), popupImpl.GetButtonImage(Toolkit::TextSelectionPopup::Buttons(-1)), TEST_LOCATION);
51
52   END_TEST;
53 }
54