Add unit test verifying compilation of various wxFont ctors.
Check that various invocations of wxFont ctor at least compile to avoid problems like the ones fixed by r70450. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70451 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -37,11 +37,13 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
CPPUNIT_TEST_SUITE( FontTestCase );
|
CPPUNIT_TEST_SUITE( FontTestCase );
|
||||||
|
CPPUNIT_TEST( Construct );
|
||||||
CPPUNIT_TEST( GetSet );
|
CPPUNIT_TEST( GetSet );
|
||||||
CPPUNIT_TEST( NativeFontInfo );
|
CPPUNIT_TEST( NativeFontInfo );
|
||||||
CPPUNIT_TEST( NativeFontInfoUserDesc );
|
CPPUNIT_TEST( NativeFontInfoUserDesc );
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
void Construct();
|
||||||
void GetSet();
|
void GetSet();
|
||||||
void NativeFontInfo();
|
void NativeFontInfo();
|
||||||
void NativeFontInfoUserDesc();
|
void NativeFontInfoUserDesc();
|
||||||
@@ -93,6 +95,26 @@ wxString DumpFont(const wxFont *font)
|
|||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void FontTestCase::Construct()
|
||||||
|
{
|
||||||
|
// The main purpose of this test is to verify that the font ctors below
|
||||||
|
// compile because it's easy to introduce ambiguities due to the number of
|
||||||
|
// overloaded wxFont ctors.
|
||||||
|
|
||||||
|
CPPUNIT_ASSERT( wxFont(10, wxFONTFAMILY_DEFAULT).IsOk() );
|
||||||
|
CPPUNIT_ASSERT( wxFont(10, wxFONTFAMILY_DEFAULT,
|
||||||
|
wxFONTFLAG_DEFAULT).IsOk() );
|
||||||
|
CPPUNIT_ASSERT( wxFont(10, wxFONTFAMILY_DEFAULT,
|
||||||
|
wxFONTSTYLE_NORMAL,
|
||||||
|
wxFONTWEIGHT_NORMAL).IsOk() );
|
||||||
|
|
||||||
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
||||||
|
// Tests relying on the soon-to-be-deprecated ctor taking ints and not
|
||||||
|
// wxFontXXX enum elements.
|
||||||
|
CPPUNIT_ASSERT( wxFont(10, wxDEFAULT, wxNORMAL, wxNORMAL).IsOk() );
|
||||||
|
#endif // FUTURE_WXWIN_COMPATIBILITY_3_0
|
||||||
|
}
|
||||||
|
|
||||||
void FontTestCase::GetSet()
|
void FontTestCase::GetSet()
|
||||||
{
|
{
|
||||||
unsigned numFonts;
|
unsigned numFonts;
|
||||||
|
Reference in New Issue
Block a user