From: Václav Slavík Date: Thu, 31 May 2007 11:00:06 +0000 (+0000) Subject: test if wxString(NULL) ctor creates empty string X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7652a41dc779688fd1eacf7c11ee2b4a0f761cbb test if wxString(NULL) ctor creates empty string git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46255 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/strings/strings.cpp b/tests/strings/strings.cpp index 94d9d7f113..9c913cc0dc 100644 --- a/tests/strings/strings.cpp +++ b/tests/strings/strings.cpp @@ -171,6 +171,9 @@ void StringTestCase::Constructors() const wxChar *start = wxStrchr(s, _T('r')); const wxChar *end = wxStrchr(s, _T('!')); TEST_CTOR((start, end), _T("really")); + + // test if creating string from NULL C pointer works: + TEST_CTOR(((char*)NULL), ""); }