From 3126648fd165eaca8d39fccf61ea89bcd4573d82 Mon Sep 17 00:00:00 2001 From: Lukasz Tabor Date: Fri, 22 Nov 2019 17:30:41 +0100 Subject: [PATCH] Tests for SingleInteractionIntervalPresenter Change-Id: I4c39cc2ee2323d9f324378f5d704597d7b6a5b80 --- .../SingleInteractionIntervalPresenterTest.cpp | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 tests/no-ui-scenarios/SingleInteractionIntervalPresenterTest.cpp diff --git a/tests/no-ui-scenarios/SingleInteractionIntervalPresenterTest.cpp b/tests/no-ui-scenarios/SingleInteractionIntervalPresenterTest.cpp new file mode 100644 index 0000000..f4b15de --- /dev/null +++ b/tests/no-ui-scenarios/SingleInteractionIntervalPresenterTest.cpp @@ -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 + +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; + } +} -- 2.7.4