X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/109e2ca4349381ca7ed73f78795f1779c33143e5..968b44d37b9fcdc5232fb68312a65e4fc6b5f4ab:/tests/misc/metatest.cpp?ds=inline diff --git a/tests/misc/metatest.cpp b/tests/misc/metatest.cpp index 1fcefd245c..6d5261a55a 100644 --- a/tests/misc/metatest.cpp +++ b/tests/misc/metatest.cpp @@ -14,9 +14,14 @@ #endif #include "wx/object.h" +#include "wx/utils.h" #include "wx/meta/pod.h" #include "wx/meta/movable.h" +#ifndef wxNO_RTTI +#include +#endif + // ---------------------------------------------------------------------------- // test class // ---------------------------------------------------------------------------- @@ -30,10 +35,14 @@ private: CPPUNIT_TEST_SUITE( MetaProgrammingTestCase ); CPPUNIT_TEST( IsPod ); CPPUNIT_TEST( IsMovable ); + CPPUNIT_TEST( ImplicitConversion ); + CPPUNIT_TEST( MinMax ); CPPUNIT_TEST_SUITE_END(); void IsPod(); void IsMovable(); + void ImplicitConversion(); + void MinMax(); DECLARE_NO_COPY_CLASS(MetaProgrammingTestCase) }; @@ -41,7 +50,7 @@ private: // register in the unnamed registry so that these tests are run by default CPPUNIT_TEST_SUITE_REGISTRATION( MetaProgrammingTestCase ); -// 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( MetaProgrammingTestCase, "MetaProgrammingTestCase" ); @@ -67,3 +76,30 @@ void MetaProgrammingTestCase::IsMovable() #endif CPPUNIT_ASSERT(!wxIsMovable::value); } + +void MetaProgrammingTestCase::ImplicitConversion() +{ +#ifndef wxNO_RTTI + CPPUNIT_ASSERT(typeid(wxImplicitConversionType::value) == typeid(int)); + CPPUNIT_ASSERT(typeid(wxImplicitConversionType::value) == typeid(unsigned)); +#ifdef wxLongLong_t + CPPUNIT_ASSERT(typeid(wxImplicitConversionType::value) == typeid(float)); +#endif +#endif // !wxNO_RTTI +} + +void MetaProgrammingTestCase::MinMax() +{ + // test that wxMax(1.1,1) returns float, not long int + float f = wxMax(1.1f, 1l); + CPPUNIT_ASSERT_EQUAL( 1.1f, f); + + // test that comparing signed and unsigned correctly returns unsigned: this + // may seem counterintuitive in this case but this is consistent with the + // standard C conversions + CPPUNIT_ASSERT_EQUAL( 1, wxMin(-1, 1u) ); + + CPPUNIT_ASSERT_EQUAL( -1., wxClip(-1.5, -1, 1) ); + CPPUNIT_ASSERT_EQUAL( 0, wxClip(0, -1, 1) ); + CPPUNIT_ASSERT_EQUAL( 1, wxClip(2l, -1, 1) ); +}