private:
CPPUNIT_TEST_SUITE( VarArgTestCase );
CPPUNIT_TEST( StringPrintf );
+#if wxUSE_STD_STRING
+ CPPUNIT_TEST( StdString );
+#endif
+ CPPUNIT_TEST( Sscanf );
CPPUNIT_TEST_SUITE_END();
void StringPrintf();
+#if wxUSE_STD_STRING
+ void StdString();
+#endif
+ void Sscanf();
DECLARE_NO_COPY_CLASS(VarArgTestCase)
};
{
wxString s, s2;
+ // test passing literals:
s.Printf("%s %i", "foo", 42);
CPPUNIT_ASSERT( s == "foo 42" );
s.Printf("%s %s %i", _T("bar"), "=", 11);
+
+ // test passing c_str():
CPPUNIT_ASSERT( s == "bar = 11" );
s2.Printf("(%s)", s.c_str());
CPPUNIT_ASSERT( s2 == "(bar = 11)" );
s2.Printf(_T("[%s](%s)"), s.c_str(), "str");
CPPUNIT_ASSERT( s2 == "[bar = 11](str)" );
+ s2.Printf("%s mailbox", wxString("Opening").c_str());
+ CPPUNIT_ASSERT( s2 == "Opening mailbox" );
+
+ // test passing wxString directly:
s2.Printf(_T("[%s](%s)"), s, "str");
CPPUNIT_ASSERT( s2 == "[bar = 11](str)" );
+
+ // 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 );
}