+
+ // test passing wxCharBufferType<T>:
+ s = "FooBar";
+ s2.Printf(_T("(%s)"), s.mb_str());
+ CPPUNIT_ASSERT( s2 == "(FooBar)" );
+ s2.Printf(_T("value=%s;"), s.wc_str());
+ CPPUNIT_ASSERT( s2 == "value=FooBar;" );
+
+ // this tests correct passing of wxCStrData constructed from string
+ // literal:
+ bool cond = true;
+ s2.Printf(_T("foo %s"), !cond ? s.c_str() : _T("bar"));
+
+}
+
+#if wxUSE_STD_STRING
+void VarArgTestCase::StdString()
+{
+ // test passing std::[w]string
+ wxString s;
+
+ std::string mb("multi-byte");
+ std::string wc("widechar");
+
+ s.Printf("string %s(%i).", mb, 1);
+ CPPUNIT_ASSERT( s == "string multi-byte(1)." );
+
+ s.Printf("string %s(%i).", wc, 2);
+ CPPUNIT_ASSERT( s == "string widechar(2)." );
+}
+#endif // wxUSE_STD_STRING
+
+void VarArgTestCase::Sscanf()
+{
+ int i = 0;
+ char str[20];
+ wchar_t wstr[20];
+
+ wxString input("42 test");
+
+ wxSscanf(input, "%d %s", &i, &str);
+ CPPUNIT_ASSERT( i == 42 );
+ CPPUNIT_ASSERT( wxStrcmp(str, "test") == 0 );
+
+ i = 0;
+ wxSscanf(input, L"%d %s", &i, &wstr);
+ CPPUNIT_ASSERT( i == 42 );
+ CPPUNIT_ASSERT( wxStrcmp(wstr, "test") == 0 );