Release 0.1.66
[platform/core/security/key-manager.git] / unit-tests / main.cpp
1 /*
2  *  Copyright (c) 2000 - 2015 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file       main.cpp
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #include <iostream>
23
24 #define BOOST_TEST_MODULE KEY_MANAGER_UNIT_TESTS
25 #include <boost/test/unit_test.hpp>
26 #include <boost/test/unit_test_log.hpp>
27 #include <boost/test/results_reporter.hpp>
28 #include <colour_log_formatter.h>
29 #include <dpl/log/log.h>
30 #include <log-setup.h>
31
32 #include <exception.h>
33
34 struct TestConfig {
35         TestConfig()
36         {
37                 boost::unit_test::unit_test_log.set_threshold_level(
38                         boost::unit_test::log_test_units);
39                 boost::unit_test::results_reporter::set_level(boost::unit_test::SHORT_REPORT);
40                 boost::unit_test::unit_test_log.set_formatter(new CKM::colour_log_formatter);
41         }
42         ~TestConfig()
43         {
44         }
45 };
46
47 struct LogSetup {
48         LogSetup()
49         {
50                 CKM::SetupClientLogSystem();
51                 CKM::Singleton<CKM::Log::LogSystem>::Instance().SetTag("CKM_UNIT_TESTS");
52         }
53         ~LogSetup() {}
54 };
55
56 BOOST_GLOBAL_FIXTURE(TestConfig);
57 BOOST_GLOBAL_FIXTURE(LogSetup);
58