Removed dead code from SimpleUI
[profile/tv/apps/web/browser.git] / unit_tests / ut_HomeGenerator.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <string>
18
19 #include <boost/signals2.hpp>
20 #include <boost/test/unit_test.hpp>
21 #include <boost/concept_check.hpp>
22
23 #include "services/HomeGenerator/HomeGenerator.h"
24
25 BOOST_AUTO_TEST_SUITE(HomeGenerator)
26
27 BOOST_AUTO_TEST_CASE(getHomePageUrl)
28 {
29     tizen_browser::services::HomeGenerator hg;
30     BOOST_CHECK_EQUAL(hg.getHomePageUrl(), std::string("/tmp/HomePage.html"));
31 }
32
33 BOOST_AUTO_TEST_SUITE_END()