7c5dee32f3b0e04c68952c086612a51cf8deab6d
[platform/core/security/libwebappenc.git] / tests / colour_log_formatter.h
1 /*
2  *  Boost Software License - Version 1.0 - August 17th, 2003
3  *
4  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5  *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6  *  FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
7  *  SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
8  *  FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
9  *  ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
10  *  DEALINGS IN THE SOFTWARE.
11  */
12 #pragma once
13
14 #include <boost/test/unit_test_log_formatter.hpp>
15
16 namespace Wae {
17 namespace Test {
18
19 class colour_log_formatter : public boost::unit_test::unit_test_log_formatter {
20 public:
21         // Formatter interface
22         colour_log_formatter() : m_isTestCaseFailed(false) {}
23         void log_start(
24                 std::ostream &,
25                 boost::unit_test::counter_t test_cases_amount);
26         void log_finish(std::ostream &);
27         void log_build_info(std::ostream &);
28
29         void test_unit_start(
30                 std::ostream &,
31                 boost::unit_test::test_unit const &tu);
32         void test_unit_finish(
33                 std::ostream &,
34                 boost::unit_test::test_unit const &tu,
35                 unsigned long elapsed);
36         void test_unit_skipped(
37                 std::ostream &,
38                 boost::unit_test::test_unit const &tu);
39
40         void log_exception(
41                 std::ostream &,
42                 boost::unit_test::log_checkpoint_data const &,
43                 boost::execution_exception const &ex);
44
45         void log_entry_start(
46                 std::ostream &,
47                 boost::unit_test::log_entry_data const &,
48                 log_entry_types let);
49         void log_entry_value(
50                 std::ostream &,
51                 boost::unit_test::const_string value);
52         void log_entry_value(
53                 std::ostream &,
54                 boost::unit_test::lazy_ostream const &value);
55         void log_entry_finish(std::ostream &);
56
57 private:
58         bool m_isTestCaseFailed;
59 };
60
61 }
62 }