Tests for SingleInteractionIntervalPresenter 84/218484/3 submit/tizen/20191128.210553 submit/tizen/20191201.211113
authorLukasz Tabor <l.tabor@partner.samsung.com>
Fri, 22 Nov 2019 16:30:41 +0000 (17:30 +0100)
committerLukasz Oleksak <l.oleksak@samsung.com>
Thu, 28 Nov 2019 14:00:34 +0000 (14:00 +0000)
Change-Id: I4c39cc2ee2323d9f324378f5d704597d7b6a5b80

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

diff --git a/tests/no-ui-scenarios/SingleInteractionIntervalPresenterTest.cpp b/tests/no-ui-scenarios/SingleInteractionIntervalPresenterTest.cpp
new file mode 100644 (file)
index 0000000..f4b15de
--- /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/SingleInteractionIntervalPresenter.hpp"
+
+#include <gtest/gtest.h>
+
+TEST(SingleInteractionIntervalPresenter, testConstructor)
+{
+       SingleInteractionIntervalPresenter presenter;
+
+       EXPECT_EQ(presenter.getTitle().str(), TranslatedString("IDS_ACCS_UNIVERSAL_SWITCH_SETTINGS_GROUP_ADD_SETTINGS_SGL_IACTION_INT").str());
+}
+
+TEST(SingleInteractionIntervalPresenter, testGetFormat)
+{
+       SingleInteractionIntervalPresenter presenter;
+
+       EXPECT_EQ(presenter.getFormat(), std::string("%1.1f seconds"));
+}
+
+TEST(SingleInteractionIntervalPresenter, testGetLabel)
+{
+       SingleInteractionIntervalPresenter presenter;
+
+       EXPECT_EQ(presenter.getLabel(), std::string("IDS_ACCS_UNIVERSAL_SWITCH_SETTINGS_GROUP_ADD_SETTINGS_SGL_IACTION_INT"));
+}
+
+int main(int argc, char *argv[])
+{
+       try {
+               ::testing::InitGoogleTest(&argc, argv);
+               return RUN_ALL_TESTS();
+       } catch (...) {
+               return 1;
+       }
+}