]>
git.saurik.com Git - wxWidgets.git/blob - tests/mbconv/mbconvtest.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/mbconv/main.cpp
3 // Purpose: wxMBConv unit test
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2003 TT-Solutions
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
12 // ----------------------------------------------------------------------------
24 #include "wx/strconv.h"
25 #include "wx/string.h"
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
31 class MBConvTestCase
: public CppUnit::TestCase
37 CPPUNIT_TEST_SUITE( MBConvTestCase
);
38 CPPUNIT_TEST( WC2CP1250
);
39 CPPUNIT_TEST_SUITE_END();
43 DECLARE_NO_COPY_CLASS(MBConvTestCase
)
46 // register in the unnamed registry so that these tests are run by default
47 CPPUNIT_TEST_SUITE_REGISTRATION( MBConvTestCase
);
49 // also include in it's own registry so that these tests can be run alone
50 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( MBConvTestCase
, "MBConvTestCase" );
52 void MBConvTestCase::WC2CP1250()
54 static const struct Data
60 { L
"hello", "hello" }, // test that it works in simplest case
61 { L
"\xBD of \xBD is \xBC", NULL
}, // this should fail as cp1250 doesn't have 1/2
64 wxCSConv
cs1250(wxFONTENCODING_CP1250
);
65 for ( size_t n
= 0; n
< WXSIZEOF(data
); n
++ )
67 const Data
& d
= data
[n
];
70 CPPUNIT_ASSERT( strcmp(cs1250
.cWC2MB(d
.wc
), d
.cp1250
) == 0 );
74 CPPUNIT_ASSERT( (const char*)cs1250
.cWC2MB(d
.wc
) == NULL
);