]>
git.saurik.com Git - wxWidgets.git/blob - tests/strings/vararg.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/strings/vararg.cpp
3 // Purpose: Test for wx vararg look-alike macros
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2007 REA Elektronik GmbH
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
25 #include "wx/string.h"
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
31 class VarArgTestCase
: public CppUnit::TestCase
37 CPPUNIT_TEST_SUITE( VarArgTestCase
);
38 CPPUNIT_TEST( StringPrintf
);
39 CPPUNIT_TEST_SUITE_END();
43 DECLARE_NO_COPY_CLASS(VarArgTestCase
)
46 // register in the unnamed registry so that these tests are run by default
47 CPPUNIT_TEST_SUITE_REGISTRATION( VarArgTestCase
);
49 // also include in it's own registry so that these tests can be run alone
50 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( VarArgTestCase
, "VarArgTestCase" );
52 void VarArgTestCase::StringPrintf()
56 // test passing literals:
57 s
.Printf("%s %i", "foo", 42);
58 CPPUNIT_ASSERT( s
== "foo 42" );
59 s
.Printf("%s %s %i", _T("bar"), "=", 11);
61 // test passing c_str():
62 CPPUNIT_ASSERT( s
== "bar = 11" );
63 s2
.Printf("(%s)", s
.c_str());
64 CPPUNIT_ASSERT( s2
== "(bar = 11)" );
65 s2
.Printf(_T("[%s](%s)"), s
.c_str(), "str");
66 CPPUNIT_ASSERT( s2
== "[bar = 11](str)" );
68 // test passing wxString directly:
69 s2
.Printf(_T("[%s](%s)"), s
, "str");
70 CPPUNIT_ASSERT( s2
== "[bar = 11](str)" );
72 // test passing wxCharBufferType<T>:
74 s2
.Printf(_T("(%s)"), s
.mb_str());
75 CPPUNIT_ASSERT( s2
== "(FooBar)" );
76 s2
.Printf(_T("value=%s;"), s
.wc_str());
77 CPPUNIT_ASSERT( s2
== "value=FooBar;" );