// register in the unnamed registry so that these tests are run by default
CPPUNIT_TEST_SUITE_REGISTRATION( GarbageTestCase );
-// also include in it's own registry so that these tests can be run alone
+// also include in its own registry so that these tests can be run alone
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GarbageTestCase, "GarbageTestCase" );
void GarbageTestCase::DoLoadFile(const wxString& fullname)
{
+ int type;
+
// test wxImage
wxImage img;
CPPUNIT_ASSERT( img.LoadFile(fullname) == false );
// test with the default wxBITMAP_TYPE_ANY
- for (int type = wxBITMAP_TYPE_BMP; type < wxBITMAP_TYPE_ANY; type++)
+ for (type = wxBITMAP_TYPE_BMP; type < wxBITMAP_TYPE_ANY; type++)
CPPUNIT_ASSERT( img.LoadFile(fullname, (wxBitmapType)type) == false );
// test with all other possible wxBITMAP_TYPE_* flags
CPPUNIT_ASSERT( bmp.LoadFile(fullname) == false );
// test with the default wxBITMAP_TYPE_ANY
- for (int type = wxBITMAP_TYPE_BMP; type < wxBITMAP_TYPE_ANY; type++)
+ for (type = wxBITMAP_TYPE_BMP; type < wxBITMAP_TYPE_ANY; type++)
CPPUNIT_ASSERT( bmp.LoadFile(fullname, (wxBitmapType)type) == false );
// test with all other possible wxBITMAP_TYPE_* flags
CPPUNIT_ASSERT( icon.LoadFile(fullname) == false );
// test with the default wxICON_DEFAULT_TYPE
- for (int type = wxBITMAP_TYPE_BMP; type < wxBITMAP_TYPE_ANY; type++)
+ for (type = wxBITMAP_TYPE_BMP; type < wxBITMAP_TYPE_ANY; type++)
CPPUNIT_ASSERT( icon.LoadFile(fullname, (wxBitmapType)type) == false );
// test with all other possible wxBITMAP_TYPE_* flags
CPPUNIT_ASSERT( anim.LoadFile(fullname) == false );
// test with the default wxANIMATION_TYPE_ANY
- for (int type = wxANIMATION_TYPE_INVALID+1; type < wxANIMATION_TYPE_ANY; type++)
+ for (type = wxANIMATION_TYPE_INVALID+1; type < wxANIMATION_TYPE_ANY; type++)
CPPUNIT_ASSERT( anim.LoadFile(fullname, (wxAnimationType)type) == false );
// test with all other possible wxANIMATION_TYPE_* flags
void GarbageTestCase::DoLoadStream(wxInputStream& stream)
{
+ int type;
+
// NOTE: not all classes tested by DoLoadFile() supports loading
// from an input stream!
CPPUNIT_ASSERT( img.LoadFile(stream) == false );
// test with the default wxBITMAP_TYPE_ANY
- for (int type = wxBITMAP_TYPE_INVALID+1; type < wxBITMAP_TYPE_ANY; type++)
+ for (type = wxBITMAP_TYPE_INVALID+1; type < wxBITMAP_TYPE_ANY; type++)
CPPUNIT_ASSERT( img.LoadFile(stream, (wxBitmapType)type) == false );
// test with all other possible wxBITMAP_TYPE_* flags
CPPUNIT_ASSERT( anim.Load(stream) == false );
// test with the default wxANIMATION_TYPE_ANY
- for (int type = wxANIMATION_TYPE_INVALID+1; type < wxANIMATION_TYPE_ANY; type++)
+ for (type = wxANIMATION_TYPE_INVALID+1; type < wxANIMATION_TYPE_ANY; type++)
CPPUNIT_ASSERT( anim.Load(stream, (wxAnimationType)type) == false );
// test with all other possible wxANIMATION_TYPE_* flags
/*