Add UTCs for TextSelectionPopup 54/39854/1
authortaeyoon <taeyoon0.lee@samsung.com>
Mon, 25 May 2015 07:04:41 +0000 (16:04 +0900)
committertaeyoon <taeyoon0.lee@samsung.com>
Mon, 25 May 2015 07:05:54 +0000 (16:05 +0900)
Change-Id: If9b62e43889434d0ca3b3a398cbc657a9b6f2dad

automated-tests/src/dali-toolkit/CMakeLists.txt
automated-tests/src/dali-toolkit/utc-Dali-TextSelectionPopup.cpp [new file with mode: 0644]
dali-toolkit/dali-toolkit.h

index c4d8c35..72c0782 100644 (file)
@@ -35,6 +35,7 @@ SET(TC_SOURCES
    utc-Dali-TableView.cpp
    utc-Dali-TextField.cpp
    utc-Dali-TextLabel.cpp
+   utc-Dali-TextSelectionPopup.cpp
    utc-Dali-ToolBar.cpp
    utc-Dali-WaterEffect.cpp
    utc-Dali-Button.cpp
diff --git a/automated-tests/src/dali-toolkit/utc-Dali-TextSelectionPopup.cpp b/automated-tests/src/dali-toolkit/utc-Dali-TextSelectionPopup.cpp
new file mode 100644 (file)
index 0000000..d4914f5
--- /dev/null
@@ -0,0 +1,106 @@
+/*
+ * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include <iostream>
+#include <stdlib.h>
+#include <dali-toolkit-test-suite-utils.h>
+#include <dali-toolkit/dali-toolkit.h>
+
+using namespace Dali;
+using namespace Toolkit;
+
+void dali_textselectionpopup_startup(void)
+{
+  test_return_value = TET_UNDEF;
+}
+
+void dali_textselectionpopup_cleanup(void)
+{
+  test_return_value = TET_PASS;
+}
+
+int UtcDaliToolkitTextSelectionPopupNewP(void)
+{
+  ToolkitTestApplication application;
+  TextSelectionPopup textSelectionPopup;
+
+  DALI_TEST_CHECK( !textSelectionPopup );
+
+  textSelectionPopup = TextSelectionPopup::New();
+
+  DALI_TEST_CHECK( textSelectionPopup );
+  END_TEST;
+}
+
+int UtcDaliToolkitTextSelectionPopupConstructorP(void)
+{
+  TextSelectionPopup textSelectionPopup;
+
+  DALI_TEST_CHECK( !textSelectionPopup );
+
+  END_TEST;
+}
+
+int UtcDaliToolkitTextSelectionPopupCopyConstructorP(void)
+{
+  ToolkitTestApplication application;
+  TextSelectionPopup textSelectionPopup;
+
+  textSelectionPopup = TextSelectionPopup::New();
+  TextSelectionPopup copy( textSelectionPopup );
+
+  DALI_TEST_CHECK( copy == textSelectionPopup );
+
+  END_TEST;
+}
+
+
+int UtcDaliToolkitTextSelectionPopupDestructorP(void)
+{
+  ToolkitTestApplication application;
+  TextSelectionPopup* textSelectionPopup = new TextSelectionPopup;
+  delete textSelectionPopup;
+
+  DALI_TEST_CHECK( true );
+
+  END_TEST;
+}
+
+int UtcDaliToolkitTextSelectionPopupAssignmentOperatorP(void)
+{
+  ToolkitTestApplication application;
+  TextSelectionPopup textSelectionPopup;
+  textSelectionPopup = TextSelectionPopup::New();
+  TextSelectionPopup copy;
+  copy = textSelectionPopup;
+
+  DALI_TEST_CHECK( copy == textSelectionPopup );
+  END_TEST;
+}
+
+int UtcDaliToolkitTextSelectionPopupDownCastP(void)
+{
+  ToolkitTestApplication application;
+  TextSelectionPopup textSelectionPopup;
+  textSelectionPopup = TextSelectionPopup::New();
+
+  TextSelectionPopup cast = TextSelectionPopup::DownCast( textSelectionPopup );
+
+  DALI_TEST_CHECK( cast );
+
+  END_TEST;
+}
index 9cef6c3..eeeaa44 100644 (file)
@@ -44,6 +44,7 @@
 #include <dali-toolkit/public-api/controls/table-view/table-view.h>
 #include <dali-toolkit/public-api/controls/text-controls/text-field.h>
 #include <dali-toolkit/public-api/controls/text-controls/text-label.h>
+#include <dali-toolkit/public-api/controls/text-controls/text-selection-popup.h>
 #include <dali-toolkit/public-api/focus-manager/focus-manager.h>
 #include <dali-toolkit/public-api/focus-manager/keyboard-focus-manager.h>
 #include <dali-toolkit/public-api/focus-manager/keyinput-focus-manager.h>