From b87cde884d03091d81e4d3fa2199155e152dda80 Mon Sep 17 00:00:00 2001 From: Baptiste Lepilleur Date: Sat, 25 May 2002 08:29:07 +0000 Subject: Include/cppunit/extensions/TestSuiteBuilder. include/cppunit/extensions/TestSuiteBuilder.h: updated to use TestNamer. Removed template method addTestCallerForException() which should solve the compilation issue with Sun 5.0/6.0 compiler. * include/cppunit/extensions/HelperMacros.h: updated against TestSuiteBuilder change. Added CPPUNIT_TEST_CUSTOM and CPPUNIT_TEST_CUSTOMS to add custom tests to the fixture suite. * include/cppunit/extensions/TestNamer.h: * src/cppunit/TestNamer.cpp: added, TestNamer to name test case and fixture. --- src/cppunit/TestNamer.cpp | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/cppunit/TestNamer.cpp (limited to 'src/cppunit/TestNamer.cpp') diff --git a/src/cppunit/TestNamer.cpp b/src/cppunit/TestNamer.cpp new file mode 100644 index 0000000..b5e096c --- /dev/null +++ b/src/cppunit/TestNamer.cpp @@ -0,0 +1,40 @@ +#include +#include +#include + + +namespace CppUnit +{ + + +#if CPPUNIT_HAVE_RTTI +TestNamer::TestNamer( const std::type_info &typeInfo ) +{ + m_fixtureName = TypeInfoHelper::getClassName( typeInfo ); +} +#endif + + +TestNamer::TestNamer( const std::string &fixtureName ) + : m_fixtureName( fixtureName ) +{ +} + + +std::string +TestNamer::getFixtureName() const +{ + return m_fixtureName; +} + + +std::string +TestNamer::getTestNameFor( const std::string &testMethodName ) const +{ + return getFixtureName() + "::" + testMethodName; +} + + + + +} // namespace CppUnit -- cgit v1.2.1