diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2001-06-12 18:08:57 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2001-06-12 18:08:57 +0000 |
| commit | e07297cc91c9a1b78d6f4ac0f2e27de91aef73f3 (patch) | |
| tree | f69561a2fdaada682d4ab461de9650366c2d70f3 /src/cppunit/TestFactoryRegistry.cpp | |
| parent | 00400ef244e0787f4f13a9391b08c53425169afe (diff) | |
| download | cppunit-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.cpp | 2 |
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; } |
