Test for ListGroup 71/218671/1
authorTomasz Okoniewski <t.okoniewski@partner.samsung.com>
Tue, 26 Nov 2019 15:21:37 +0000 (16:21 +0100)
committerTomasz Okoniewski <t.okoniewski@partner.samsung.com>
Tue, 26 Nov 2019 15:21:37 +0000 (16:21 +0100)
Change-Id: I012d250b49346130f9fdfe89307d84b15a7cca40

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

diff --git a/tests/no-ui-scenarios/ListGroupTest.cpp b/tests/no-ui-scenarios/ListGroupTest.cpp
new file mode 100644 (file)
index 0000000..2f3288e
--- /dev/null
@@ -0,0 +1,35 @@
+/*
+ * 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 "ListGroup.hpp"
+
+#include <gtest/gtest.h>
+
+TEST(ListGroup, testListGroup)
+{
+       auto lg = new ListGroup("Very Simple Group");
+       EXPECT_STRCASEEQ("Very Simple Group", lg->name_.c_str());
+}
+
+int main(int argc, char *argv[])
+{
+       try {
+               ::testing::InitGoogleTest(&argc, argv);
+               return RUN_ALL_TESTS();
+       } catch (...) {
+               return 1;
+       }
+}