git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60922
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
//
#include "wx/beforestd.h"
//
#include "wx/beforestd.h"
+#ifdef __VISUALC__
+ // with cppunit 1.12 we get many bogus warnings 4701 (local variable may be
+ // used without having been initialized) in TestAssert.h
+ #pragma warning(disable:4701)
+#endif
+
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>
#include <cppunit/TestCase.h>
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/CompilerOutputter.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>
#include <cppunit/TestCase.h>
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/CompilerOutputter.h>
+
+#ifdef __VISUALC__
+ #pragma warning(default:4701)
+#endif
#include "wx/afterstd.h"
#include "wx/string.h"
#include "wx/afterstd.h"
#include "wx/string.h"
return NULL;
if (genericInterface)
return NULL;
if (genericInterface)
return new ArchiveTestCase<wxArchiveClassFactory>(
descr, new wxTarClassFactory,
options, archiver, unarchiver);
return new ArchiveTestCase<wxArchiveClassFactory>(
descr, new wxTarClassFactory,
options, archiver, unarchiver);
- else
- return new ArchiveTestCase<wxTarClassFactory>(
- descr, new wxTarClassFactory,
- options, archiver, unarchiver);
+ }
+
+ return new ArchiveTestCase<wxTarClassFactory>(
+ descr, new wxTarClassFactory,
+ options, archiver, unarchiver);
}
CPPUNIT_TEST_SUITE_REGISTRATION(tartest);
}
CPPUNIT_TEST_SUITE_REGISTRATION(tartest);
return NULL;
if (genericInterface)
return NULL;
if (genericInterface)
return new ArchiveTestCase<wxArchiveClassFactory>(
descr, new wxZipClassFactory,
options, archiver, unarchiver);
return new ArchiveTestCase<wxArchiveClassFactory>(
descr, new wxZipClassFactory,
options, archiver, unarchiver);
- else
- return new ZipTestCase(descr, options, archiver, unarchiver);
+ }
+
+ return new ZipTestCase(descr, options, archiver, unarchiver);
}
CPPUNIT_TEST_SUITE_REGISTRATION(ziptest);
}
CPPUNIT_TEST_SUITE_REGISTRATION(ziptest);
if (!buf || wxWcscmp(wxConvCurrent->cWX2WC(buf), wstr) != 0)
return convError();
if (!buf || wxWcscmp(wxConvCurrent->cWX2WC(buf), wstr) != 0)
return convError();