#include <tut.h>
Inheritance diagram for tut::callback:
Public Member Functions | |
virtual | ~callback () |
virtual void | run_started () |
virtual void | test_completed (const test_result &) |
virtual void | run_completed () |
Definition at line 174 of file tut.h.
virtual tut::callback::~callback | ( | ) | [inline, virtual] |
virtual void tut::callback::run_completed | ( | ) | [inline, virtual] |
Called when all tests in run completed.
Reimplemented in tut::reporter.
Definition at line 195 of file tut.h.
Referenced by tut::restartable_wrapper::invoke_callback_(), tut::test_runner::run_test(), and tut::test_runner::run_tests().
virtual void tut::callback::run_started | ( | ) | [inline, virtual] |
Called when new test run started.
Reimplemented in tut::reporter.
Definition at line 184 of file tut.h.
Referenced by tut::restartable_wrapper::invoke_callback_(), tut::test_runner::run_test(), and tut::test_runner::run_tests().
virtual void tut::callback::test_completed | ( | const test_result & | ) | [inline, virtual] |
Called when a test finished.
tr | Test results. |
Reimplemented in tut::reporter.
Definition at line 190 of file tut.h.
Referenced by tut::restartable_wrapper::invoke_callback_(), tut::test_runner::run_test(), and tut::test_runner::run_tests().