85e2e5d5705ed7026a37647bccec0f260d7b9a5c
[platform/core/test/security-tests.git] / tests / framework / include / dpl / test / statistic.h
1 /*
2  * Copyright (c) 2014 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        statistic.h
18  * @author      Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @author      Marcin Niesluchowski (m.niesluchow@samsung.com)
20  * @version     1.0
21  * @brief       Header file with implementation of Statistic class
22  */
23
24 #ifndef DPL_TEST_STATISTIC_H
25 #define DPL_TEST_STATISTIC_H
26
27 #include <cstddef>
28
29 #include <dpl/assert.h>
30 #include <dpl/test/test_results_collector.h>
31
32 namespace DPL {
33 namespace Test {
34
35 class Statistic
36 {
37   public:
38     Statistic() :
39         m_failed(0),
40         m_ignored(0),
41         m_passed(0),
42         m_count(0)
43     {}
44
45     void AddTest(TestResultsCollectorBase::FailStatus::Type type)
46     {
47         ++m_count;
48         switch (type) {
49         case TestResultsCollectorBase::FailStatus::INTERNAL:
50         case TestResultsCollectorBase::FailStatus::FAILED:   ++m_failed;
51             break;
52         case TestResultsCollectorBase::FailStatus::IGNORED:  ++m_ignored;
53             break;
54         case TestResultsCollectorBase::FailStatus::NONE:     ++m_passed;
55             break;
56         default:
57             Assert(false && "Bad FailStatus");
58         }
59     }
60
61     std::size_t GetTotal() const
62     {
63         return m_count;
64     }
65     std::size_t GetPassed() const
66     {
67         return m_passed;
68     }
69     std::size_t GetSuccesed() const
70     {
71         return m_passed;
72     }
73     std::size_t GetFailed() const
74     {
75         return m_failed;
76     }
77     std::size_t GetIgnored() const
78     {
79         return m_ignored;
80     }
81     float GetPassedOrIgnoredPercend() const
82     {
83         float passIgnoredPercent =
84             100.0f * (static_cast<float>(m_passed)
85                       + static_cast<float>(m_ignored))
86             / static_cast<float>(m_count);
87         return passIgnoredPercent;
88     }
89
90   private:
91     std::size_t m_failed;
92     std::size_t m_ignored;
93     std::size_t m_passed;
94     std::size_t m_count;
95 };
96
97 } // namespace Test
98 } // namespace DPL
99
100 #endif // DPL_TEST_STATISTIC_H