From db990ecb4272c27ce8f252aa5e8023bc274af8d5 Mon Sep 17 00:00:00 2001 From: Gennadiy Rozental Date: Sun, 30 Jan 2005 03:21:34 +0000 Subject: [PATCH] interface changed to use const_string [SVN r26921] --- include/boost/test/unit_test_suite_ex.hpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/boost/test/unit_test_suite_ex.hpp b/include/boost/test/unit_test_suite_ex.hpp index cc8bd757..2e77d692 100644 --- a/include/boost/test/unit_test_suite_ex.hpp +++ b/include/boost/test/unit_test_suite_ex.hpp @@ -87,14 +87,14 @@ private: // ************************************************************************** // inline test_case* -create_test_case( function0 const& fct_, std::string name_ ) +create_test_case( function0 const& fct_, const_string name_ ) { return new boost_function_test_case( fct_, ut_detail::normalize_test_case_name( name_ ) ); } template inline test_case* -create_test_case( function1 const& fct_, std::string name_, +create_test_case( function1 const& fct_, const_string name_, ParamIterator const& begin_, ParamIterator const& end_ ) { return new parametrized_boost_function_test_case( @@ -109,6 +109,9 @@ create_test_case( function1 const& fct_, std::string name_, // Revision History : // // $Log$ +// Revision 1.20 2005/01/30 03:21:34 rogeeff +// interface changed to use const_string +// // Revision 1.19 2004/07/19 12:16:41 rogeeff // guard rename //