Test for ListItem 70/218670/1
authorTomasz Okoniewski <t.okoniewski@partner.samsung.com>
Tue, 26 Nov 2019 13:51:21 +0000 (14:51 +0100)
committerTomasz Okoniewski <t.okoniewski@partner.samsung.com>
Tue, 26 Nov 2019 13:51:21 +0000 (14:51 +0100)
Change-Id: I172489c112458944f13da4d69b9bdda818022cf7

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

diff --git a/tests/no-ui-scenarios/ListItemTest.cpp b/tests/no-ui-scenarios/ListItemTest.cpp
new file mode 100644 (file)
index 0000000..8322df2
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * 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 "ListItem.hpp"
+
+#include <gtest/gtest.h>
+
+TEST(ListItem, testListItem)
+{
+
+       auto li = new ListItem("TestTitle", "testTitle very long description");
+       EXPECT_STRCASEEQ("TestTitle", li->title_.value_.c_str());
+       EXPECT_STRCASEEQ("testTitle very long description", li->description_.value_.c_str());
+}
+
+int main(int argc, char *argv[])
+{
+       try {
+               ::testing::InitGoogleTest(&argc, argv);
+               return RUN_ALL_TESTS();
+       } catch (...) {
+               return 1;
+       }
+}