diff options
Diffstat (limited to 'src/cppunit/TestNamer.cpp')
| -rw-r--r-- | src/cppunit/TestNamer.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
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 <cppunit/extensions/TestNamer.h> +#include <cppunit/extensions/TypeInfoHelper.h> +#include <string> + + +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 |
