summaryrefslogtreecommitdiff
path: root/boost/test/impl/test_tree.ipp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/test/impl/test_tree.ipp')
-rw-r--r--boost/test/impl/test_tree.ipp19
1 files changed, 19 insertions, 0 deletions
diff --git a/boost/test/impl/test_tree.ipp b/boost/test/impl/test_tree.ipp
index 08bdad3360..81995bb29f 100644
--- a/boost/test/impl/test_tree.ipp
+++ b/boost/test/impl/test_tree.ipp
@@ -448,9 +448,28 @@ auto_test_unit_registrar::auto_test_unit_registrar( int )
global_fixture::global_fixture()
{
+ framework::register_global_fixture( *this );
+}
+
+global_fixture::~global_fixture()
+{
+ framework::deregister_global_fixture( *this );
+}
+
+// ************************************************************************** //
+// ************** global_configuration ************** //
+// ************************************************************************** //
+
+global_configuration::global_configuration()
+{
framework::register_observer( *this );
}
+global_configuration::~global_configuration()
+{
+ framework::deregister_observer( *this );
+}
+
//____________________________________________________________________________//
} // namespace unit_test