X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/85615340856e9a41cb28eaa6ebf12f4945b78b4b..1ec4e9c2b72a01a7ba7da569e0f8d04a81aaba10:/tests/any/anytest.cpp diff --git a/tests/any/anytest.cpp b/tests/any/anytest.cpp index 156ba08689..7c6fdaa131 100644 --- a/tests/any/anytest.cpp +++ b/tests/any/anytest.cpp @@ -101,7 +101,7 @@ private: // register in the unnamed registry so that these tests are run by default CPPUNIT_TEST_SUITE_REGISTRATION( wxAnyTestCase ); -// 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( wxAnyTestCase, "wxAnyTestCase" ); // Let's use a number with first digit after decimal dot less than 5, @@ -563,7 +563,9 @@ void wxAnyTestCase::wxVariantConversions() res = any.GetAs(&variant); CPPUNIT_ASSERT(res); CPPUNIT_ASSERT(variant.GetType() == "string"); +#if wxUSE_UNICODE CPPUNIT_ASSERT(variant.GetString() == L"ABC"); +#endif any = vDouble; double d = wxANY_AS(any, double); @@ -729,7 +731,7 @@ void wxAnyTestCase::Misc() } wxAny any2 = any; - CPPUNIT_ASSERT( any2.As().GetValue() == 15 ); + CPPUNIT_ASSERT( wxANY_AS(any2, MyClass).GetValue() == 15 ); } // Make sure allocations and deallocations match