From cdbca4119defbc5f9698906633eec05b5dc8272a Mon Sep 17 00:00:00 2001 From: "Steve M. Robbins" Date: Sat, 2 Jun 2001 21:29:52 +0000 Subject: Change to templatized TestAssert::assertEquals() and the new CPPUNIT_ASSERT* macros --- src/cppunit/TestFactoryRegistry.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/cppunit/TestFactoryRegistry.cpp') diff --git a/src/cppunit/TestFactoryRegistry.cpp b/src/cppunit/TestFactoryRegistry.cpp index 8d44312..25d6de2 100644 --- a/src/cppunit/TestFactoryRegistry.cpp +++ b/src/cppunit/TestFactoryRegistry.cpp @@ -5,12 +5,14 @@ #include #include +#include "cppunit/config.h" #include "cppunit/TestSuite.h" #include "cppunit/extensions/TestFactoryRegistry.h" -#ifdef CPPUNIT_USE_TYPEINFO -#include "cppunit/extensions/TypeInfoHelper.h" -#endif // CPPUNIT_USE_TYPEINFO +#if CPPUNIT_USE_TYPEINFO +# include "cppunit/extensions/TypeInfoHelper.h" +#endif + namespace CppUnit { -- cgit v1.2.1