summaryrefslogtreecommitdiff
path: root/src/cppunit
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2001-09-14 18:28:36 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2001-09-14 18:28:36 +0000
commit4de811742dab8be4819ccb3b0492b56dff038693 (patch)
tree6903e6e37abd14e0480a79b140d3ca1ae65203a9 /src/cppunit
parent919cc774e43f62659ecfe5f85882b0073c4ea2d4 (diff)
downloadcppunit-4de811742dab8be4819ccb3b0492b56dff038693.tar.gz
Src/msvc6/testrunner/TestRunner.
src/msvc6/testrunner/TestRunner.dsp: fixed release configuration. * src/msvc6/testrunner/TestRunner.dsw: added DSPlugIn.dsp. TestRunner depends on DSPlugIn. * src/msvc6/testrunner/TestRunner.cpp: * src/msvc6/testrunner/TestRunnerDlg.h: * src/msvc6/testrunner/TestRunnerDlg.cpp: * src/msvc6/testrunner/MsDevCallerListCtrl.cpp: * src/msvc6/testrunner/MsDevCallerListCtrl.h: * src/msvc6/DSPlugIn/*: integrated patch from Patrick Berny (PPBerny@web.de). An add-ins for VC++. Double-cliking a failed test in the TestRunner, VC++ will open the source file and go to the failure location. * src/cppunit/Exception.cpp: * include/cppunit/Exception.h: compile fix, call to overrided operator = of parent class failed. Using typedef to the parent class fix that. * src/cppunit/cppunit.dsp: added TestFixture.h * src/cppunit/TestFactoryRegistry.cpp: removed <utility> which isn't needed any more. * include/cppunit/TestCase.h: * include/cppunit/TestSuite.h: * include/cppunit/extensions/TestFactoryRegistry.h: added include <Portability.h> before any other includes to remove warning with VC++. * include/cppunit/Portability.h: moved platform specific includes at the beginning of the header. fixed CPPUNIT_HAVE_CPP_SOURCE_ANNOTATION declaration. * include/cppunit/config-msvc6.h: removed pragma once (useless, should be put in each header to have an effect).
Diffstat (limited to 'src/cppunit')
-rw-r--r--src/cppunit/Exception.cpp2
-rw-r--r--src/cppunit/TestFactoryRegistry.cpp5
-rw-r--r--src/cppunit/cppunit.dsp4
3 files changed, 6 insertions, 5 deletions
diff --git a/src/cppunit/Exception.cpp b/src/cppunit/Exception.cpp
index 466e75a..0246c98 100644
--- a/src/cppunit/Exception.cpp
+++ b/src/cppunit/Exception.cpp
@@ -38,7 +38,7 @@ Exception::~Exception () throw()
Exception&
Exception::operator=( const Exception& other )
{
- std::exception::operator= (other);
+ SuperClass::operator= (other);
if (&other != this)
{
diff --git a/src/cppunit/TestFactoryRegistry.cpp b/src/cppunit/TestFactoryRegistry.cpp
index ed6ba47..33bf0bf 100644
--- a/src/cppunit/TestFactoryRegistry.cpp
+++ b/src/cppunit/TestFactoryRegistry.cpp
@@ -1,8 +1,5 @@
-#include <utility>
-
-#include <cppunit/Portability.h>
-#include <cppunit/TestSuite.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
+#include <cppunit/TestSuite.h>
#if CPPUNIT_USE_TYPEINFO_NAME
# include "cppunit/extensions/TypeInfoHelper.h"
diff --git a/src/cppunit/cppunit.dsp b/src/cppunit/cppunit.dsp
index e8ae0bd..60a1755 100644
--- a/src/cppunit/cppunit.dsp
+++ b/src/cppunit/cppunit.dsp
@@ -227,6 +227,10 @@ SOURCE=..\..\include\cppunit\TestFailure.h
# End Source File
# Begin Source File
+SOURCE=..\..\include\cppunit\TestFixture.h
+# End Source File
+# Begin Source File
+
SOURCE=..\..\include\cppunit\TestListener.h
# End Source File
# Begin Source File