summaryrefslogtreecommitdiff
path: root/tests/colour_log_formatter.h
blob: dd6028bbf01fdf0229ed5f2de2ed28954ff1b470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef COLOUR_LOG_FORMATTER_H_
#define COLOUR_LOG_FORMATTER_H_

#include <boost/test/unit_test_log_formatter.hpp>

namespace CCHECKER {
class colour_log_formatter : public boost::unit_test::unit_test_log_formatter {
public:
    // Formatter interface
    colour_log_formatter() : m_isTestCaseFailed(false) {}
    void    log_start(
                std::ostream&,
                boost::unit_test::counter_t test_cases_amount );
    void    log_finish( std::ostream& );
    void    log_build_info( std::ostream& );

    void    test_unit_start(
                std::ostream&,
                boost::unit_test::test_unit const& tu );
    void    test_unit_finish(
                std::ostream&,
                boost::unit_test::test_unit const& tu,
                unsigned long elapsed );
    void    test_unit_skipped(
                std::ostream&,
                boost::unit_test::test_unit const& tu );

    void    log_exception(
                std::ostream&,
                boost::unit_test::log_checkpoint_data const&,
                boost::execution_exception const& ex );

    void    log_entry_start(
                std::ostream&,
                boost::unit_test::log_entry_data const&,
                log_entry_types let );
    void    log_entry_value(
                std::ostream&,
                boost::unit_test::const_string value );
    void    log_entry_value(
                std::ostream&,
                boost::unit_test::lazy_ostream const& value );
    void    log_entry_finish( std::ostream& );
private:
    bool m_isTestCaseFailed;
};
} // namespace CCHECKER

#endif /* COLOUR_LOG_FORMATTER_H_ */