Tests for TapDurationPresenter 67/218467/1
authorLukasz Tabor <l.tabor@partner.samsung.com>
Fri, 22 Nov 2019 13:25:40 +0000 (14:25 +0100)
committerLukasz Tabor <l.tabor@partner.samsung.com>
Fri, 22 Nov 2019 13:25:40 +0000 (14:25 +0100)
Change-Id: I8994f6becee2928bc6144261a42fb3c6f15cb3ba

tests/CMakeLists.txt
tests/no-ui-scenarios/TapDurationPresenterTest.cpp [new file with mode: 0644]

index 0d36fa4a0d210d6edb7f664b8bc430edd5c3fc71..64594be60f4456c7cc0849a694ff8f5ee26f76d7 100644 (file)
@@ -1,5 +1,5 @@
 INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/src/)
-INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/src/utils ${CMAKE_SOURCE_DIR}/src/presenter ${CMAKE_SOURCE_DIR}/src/service)
+INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/src/utils ${CMAKE_SOURCE_DIR}/src/presenter ${CMAKE_SOURCE_DIR}/src/service ${CMAKE_SOURCE_DIR}/src/ui ${CMAKE_SOURCE_DIR}/src/model)
 
 INSTALL(PROGRAMS VConf_init.sh DESTINATION ${CMAKE_TESTS_INSTALL_PREFIX}/scripts/)
 INSTALL(FILES org.tizen.accessibility-setting-tests.xml DESTINATION ${TZ_SYS_RO_PACKAGES})
diff --git a/tests/no-ui-scenarios/TapDurationPresenterTest.cpp b/tests/no-ui-scenarios/TapDurationPresenterTest.cpp
new file mode 100644 (file)
index 0000000..c0a23b5
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+ * Copyright 2017  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 "presenter/TapDurationPresenter.hpp"
+
+#include <gtest/gtest.h>
+
+TEST(TapDurationPresenter, testConstructor)
+{
+       TapDurationPresenter presenter;
+
+       EXPECT_EQ(presenter.getTitle().str(), std::string("IDS_ACCS_UNIVERSAL_SWITCH_SETTINGS_GROUP_ADD_SETTINGS_TAP_DURATION"));
+}
+
+TEST(TapDurationPresenter, testGetFormat)
+{
+       TapDurationPresenter presenter;
+
+       EXPECT_EQ(presenter.getFormat(), std::string("%1.1f seconds"));
+}
+
+TEST(TapDurationPresenter, testGetLabel)
+{
+       TapDurationPresenter presenter;
+
+       EXPECT_EQ(presenter.getLabel(), std::string("IDS_ACCS_UNIVERSAL_SWITCH_SETTINGS_GROUP_ADD_SETTINGS_TAP_DURATION"));
+}
+
+int main(int argc, char *argv[])
+{
+       try {
+               ::testing::InitGoogleTest(&argc, argv);
+               return RUN_ALL_TESTS();
+       } catch (...) {
+               return 1;
+       }
+}