Tests for PointScanSpeedPresenter
authorLukasz Tabor <l.tabor@partner.samsung.com>
Mon, 25 Nov 2019 12:34:13 +0000 (13:34 +0100)
committerJongmin Lee <jm105.lee@samsung.com>
Sat, 11 Jan 2020 08:59:19 +0000 (17:59 +0900)
Change-Id: I442d1c9117d385aad69a44e384bc23951bb0318e

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

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