]> git.saurik.com Git - wxWidgets.git/blob - tests/strings/vararg.cpp
added test for operator?: and wxCStrData
[wxWidgets.git] / tests / strings / vararg.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/strings/vararg.cpp
3 // Purpose: Test for wx vararg look-alike macros
4 // Author: Vaclav Slavik
5 // Created: 2007-02-20
6 // RCS-ID: $Id$
7 // Copyright: (c) 2007 REA Elektronik GmbH
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 // ----------------------------------------------------------------------------
12 // headers
13 // ----------------------------------------------------------------------------
14
15 #include "testprec.h"
16
17 #ifdef __BORLANDC__
18 #pragma hdrstop
19 #endif
20
21 #ifndef WX_PRECOMP
22 #include "wx/wx.h"
23 #endif // WX_PRECOMP
24
25 #include "wx/string.h"
26
27 // ----------------------------------------------------------------------------
28 // test class
29 // ----------------------------------------------------------------------------
30
31 class VarArgTestCase : public CppUnit::TestCase
32 {
33 public:
34 VarArgTestCase() {}
35
36 private:
37 CPPUNIT_TEST_SUITE( VarArgTestCase );
38 CPPUNIT_TEST( StringPrintf );
39 CPPUNIT_TEST_SUITE_END();
40
41 void StringPrintf();
42
43 DECLARE_NO_COPY_CLASS(VarArgTestCase)
44 };
45
46 // register in the unnamed registry so that these tests are run by default
47 CPPUNIT_TEST_SUITE_REGISTRATION( VarArgTestCase );
48
49 // also include in it's own registry so that these tests can be run alone
50 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( VarArgTestCase, "VarArgTestCase" );
51
52 void VarArgTestCase::StringPrintf()
53 {
54 wxString s, s2;
55
56 s.Printf("%s %i", "foo", 42);
57 CPPUNIT_ASSERT( s == "foo 42" );
58 s.Printf("%s %s %i", _T("bar"), "=", 11);
59 CPPUNIT_ASSERT( s == "bar = 11" );
60 s2.Printf("(%s)", s.c_str());
61 CPPUNIT_ASSERT( s2 == "(bar = 11)" );
62 s2.Printf(_T("[%s](%s)"), s.c_str(), "str");
63 CPPUNIT_ASSERT( s2 == "[bar = 11](str)" );
64
65 s2.Printf(_T("[%s](%s)"), s, "str");
66 CPPUNIT_ASSERT( s2 == "[bar = 11](str)" );
67 }