summaryrefslogtreecommitdiff
path: root/tests/colour_log_formatter.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/colour_log_formatter.h')
-rw-r--r--tests/colour_log_formatter.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/colour_log_formatter.h b/tests/colour_log_formatter.h
index ac4b07f..0838cce 100644
--- a/tests/colour_log_formatter.h
+++ b/tests/colour_log_formatter.h
@@ -39,10 +39,11 @@ public:
std::ostream &,
boost::unit_test::test_unit const &tu);
- void log_exception(
+ void log_exception_start(
std::ostream &,
boost::unit_test::log_checkpoint_data const &,
boost::execution_exception const &ex);
+ void log_exception_finish(std::ostream &os);
void log_entry_start(
std::ostream &,
@@ -55,6 +56,14 @@ public:
std::ostream &,
boost::unit_test::lazy_ostream const &value);
void log_entry_finish(std::ostream &);
+
+ void entry_context_start(
+ std::ostream& os,
+ boost::unit_test::log_level l);
+ void log_entry_context(
+ std::ostream& os,
+ boost::unit_test::const_string value);
+ void entry_context_finish(std::ostream& os);
private:
bool m_isTestCaseFailed;
};