1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/misc/misctests.cpp
3 // Purpose: test miscellaneous stuff
4 // Author: Peter Most, Vadim Zeitlin
7 // Copyright: (c) 2008 Peter Most
8 // (c) 2009 Vadim Zeitlin
9 ///////////////////////////////////////////////////////////////////////////////
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
23 // just some classes using wxRTTI for wxStaticCast() test
24 #include "wx/tarstrm.h"
25 #include "wx/zipstrm.h"
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
31 class MiscTestCase
: public CppUnit::TestCase
37 CPPUNIT_TEST_SUITE( MiscTestCase
);
38 CPPUNIT_TEST( Assert
);
39 CPPUNIT_TEST( Delete
);
40 CPPUNIT_TEST( StaticCast
);
41 CPPUNIT_TEST_SUITE_END();
47 DECLARE_NO_COPY_CLASS(MiscTestCase
)
50 // register in the unnamed registry so that these tests are run by default
51 CPPUNIT_TEST_SUITE_REGISTRATION( MiscTestCase
);
53 // also include in it's own registry so that these tests can be run alone
54 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( MiscTestCase
, "MiscTestCase" );
59 bool AssertIfOdd(int n
)
61 wxCHECK_MSG( !(n
% 2), false, "parameter must be even" );
66 } // anonymous namespace
68 void MiscTestCase::Assert()
71 WX_ASSERT_FAILS_WITH_ASSERT(AssertIfOdd(1));
73 // doesn't fail any more
74 wxAssertHandler_t oldHandler
= wxSetAssertHandler(NULL
);
76 wxSetAssertHandler(oldHandler
);
79 void MiscTestCase::Delete()
81 // Allocate some arbitrary memory to get a valid pointer:
82 long *pointer
= new long;
83 CPPUNIT_ASSERT( pointer
!= NULL
);
85 // Check that wxDELETE sets the pointer to NULL:
87 CPPUNIT_ASSERT( pointer
== NULL
);
89 // Allocate some arbitrary array to get a valid pointer:
90 long *array
= new long[ 3 ];
91 CPPUNIT_ASSERT( array
!= NULL
);
93 // Check that wxDELETEA sets the pointer to NULL:
95 CPPUNIT_ASSERT( array
== NULL
);
97 // this results in compilation error, as it should
99 struct SomeUnknownStruct
*p
= NULL
;
107 // helper function used just to avoid warnings about value computed not being
108 // used in WX_ASSERT_FAILS_WITH_ASSERT() in StaticCast() below
114 } // anonymous namespace
116 void MiscTestCase::StaticCast()
119 CPPUNIT_ASSERT( wxStaticCast(&tarEntry
, wxArchiveEntry
) );
121 wxArchiveEntry
*entry
= &tarEntry
;
122 CPPUNIT_ASSERT( wxStaticCast(entry
, wxTarEntry
) );
126 CPPUNIT_ASSERT( wxStaticCast(entry
, wxZipEntry
) );
128 WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(entry
, wxTarEntry
)) );
129 WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(&zipEntry
, wxTarEntry
)) );