Add summary view to all security tests.
[platform/core/test/security-tests.git] / tests / common / summary_collector.h
1 /*
2  * Copyright (c) 2013 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 /*
18  * @file        summary_collector.h
19  * @author      Michal Witanowski (m.witanowski@samsung.com)
20  * @version     1.0
21  * @brief       Implementation of custom test results collector needed by summary view.
22  */
23
24 #ifndef _RAW_RESULTS_COLLECTOR_H_
25 #define _RAW_RESULTS_COLLECTOR_H_
26
27 #include <dpl/test/test_results_collector.h>
28
29 /*
30  * Custom test runner results collector. The results (total test cases, failed, etc.) are
31  * appended to a file, wihich is parsed after execution of all tests in oreder to
32  * display summary view.
33  */
34 class SummaryCollector : public DPL::Test::TestResultsCollectorBase
35 {
36     unsigned int m_total, m_succeeded, m_failed, m_ignored; // counters
37
38     SummaryCollector();
39     void Start();
40     void Finish();
41     void CollectResult(const std::string& /*id*/,
42                        const std::string& /*description*/,
43                        const FailStatus::Type status,
44                        const std::string& /*reason = ""*/);
45
46 public:
47     static TestResultsCollectorBase* Constructor();
48     static void Register();
49 };
50
51 #endif