1 //=============================================================================
3 * @file test_wrapper.cpp
5 * This file contains the implementation of the DynAny basic test manager
7 * @author Jeff Parsons <parsons@cs.wustl.edu>
9 //=============================================================================
12 #if !defined (TEST_WRAPPER_CPP)
13 #define TEST_WRAPPER_CPP
15 #include "test_wrapper.h"
16 #include "ace/Log_Msg.h"
20 Test_Wrapper
<T
>::Test_Wrapper (T
* t
)
27 Test_Wrapper
<T
>::~Test_Wrapper ()
29 delete this->test_object_
;
34 Test_Wrapper
<T
>::run_test ()
36 const char* test_name
= this->test_object_
->test_name ();
39 "********************* %C *******************\n\n",
42 return this->test_object_
->run_test ();
45 #endif /* TEST_WRAPPER_CPP */