X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/99d8bc6593ee026a251eb0009c14f17aa6af4616..921e411cc107c6150013eea1ee3bb53825df6357:/tests/strings/iostream.cpp diff --git a/tests/strings/iostream.cpp b/tests/strings/iostream.cpp index 6e40cbb28f..30ac12ba6c 100644 --- a/tests/strings/iostream.cpp +++ b/tests/strings/iostream.cpp @@ -21,6 +21,8 @@ #include "wx/string.h" #endif // WX_PRECOMP +#if wxUSE_STD_IOSTREAM + #include #define ASSERT_OSTREAM_EQUAL(p, s) CPPUNIT_ASSERT_EQUAL(std::string(p), s.str()) @@ -45,7 +47,7 @@ private: CPPUNIT_TEST_SUITE_REGISTRATION( StringIostreamTestCase ); -// also include in it's own registry so that these tests can be run alone +// also include in its own registry so that these tests can be run alone CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StringIostreamTestCase, "StringIostream" ); void StringIostreamTestCase::Out() @@ -54,8 +56,11 @@ void StringIostreamTestCase::Out() s << wxString("hello"); ASSERT_OSTREAM_EQUAL("hello", s); +#if wxUSE_UNICODE && defined(HAVE_WOSTREAM) std::wostringstream ws; ws << wxString("bye"); ASSERT_WOSTREAM_EQUAL(L"bye", ws); +#endif } +#endif // wxUSE_STD_IOSTREAM