Tests for NumberOfAutoScanLoopsPresenter 69/218569/2
authorLukasz Tabor <l.tabor@partner.samsung.com>
Mon, 25 Nov 2019 13:09:56 +0000 (14:09 +0100)
committerLukasz Oleksak <l.oleksak@samsung.com>
Thu, 28 Nov 2019 10:40:11 +0000 (10:40 +0000)
Change-Id: Ia8d7e676bd5d5a761e2f949c36890df514cd8958

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

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