summaryrefslogtreecommitdiff
path: root/src/cppunit/TestFactoryRegistry.cpp
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2001-06-12 18:08:57 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2001-06-12 18:08:57 +0000
commite07297cc91c9a1b78d6f4ac0f2e27de91aef73f3 (patch)
treef69561a2fdaada682d4ab461de9650366c2d70f3 /src/cppunit/TestFactoryRegistry.cpp
parent00400ef244e0787f4f13a9391b08c53425169afe (diff)
downloadcppunit-e07297cc91c9a1b78d6f4ac0f2e27de91aef73f3.tar.gz
src/cppunit/TestFactoryRegistry.cpp: fixed makeTest(). It did not use m_name for
naming the suite.
Diffstat (limited to 'src/cppunit/TestFactoryRegistry.cpp')
-rw-r--r--src/cppunit/TestFactoryRegistry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cppunit/TestFactoryRegistry.cpp b/src/cppunit/TestFactoryRegistry.cpp
index 25d6de2..e20b901 100644
--- a/src/cppunit/TestFactoryRegistry.cpp
+++ b/src/cppunit/TestFactoryRegistry.cpp
@@ -83,7 +83,7 @@ TestFactoryRegistry::registerFactory( TestFactory *factory )
Test *
TestFactoryRegistry::makeTest()
{
- TestSuite *suite = new TestSuite( "All Tests" );
+ TestSuite *suite = new TestSuite( m_name );
addTestToSuite( suite );
return suite;
}