From: Tomasz Okoniewski Date: Tue, 26 Nov 2019 15:21:37 +0000 (+0100) Subject: Test for ListGroup X-Git-Tag: submit/tizen/20191202.210542~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=735c62d8302977985b31329790b695149e36bb21;p=profile%2Fmobile%2Fapps%2Fnative%2Faccessibility-setting.git Test for ListGroup Change-Id: I012d250b49346130f9fdfe89307d84b15a7cca40 --- diff --git a/tests/no-ui-scenarios/ListGroupTest.cpp b/tests/no-ui-scenarios/ListGroupTest.cpp new file mode 100644 index 0000000..2f3288e --- /dev/null +++ b/tests/no-ui-scenarios/ListGroupTest.cpp @@ -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 + +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; + } +}