X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c6e8c6f84a1420a9247fa56d342b561af730364c..04a123c642b0fc589e29cdd507faf11b85973f79:/tests/geometry/point.cpp diff --git a/tests/geometry/point.cpp b/tests/geometry/point.cpp index ecdf7c9d06..32b46c7700 100644 --- a/tests/geometry/point.cpp +++ b/tests/geometry/point.cpp @@ -61,7 +61,7 @@ private: CPPUNIT_TEST_SUITE_REGISTRATION( PointTestCase ); CPPUNIT_TEST_SUITE_REGISTRATION( RealPointTestCase ); -// 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( PointTestCase, "PointTestCase" ); CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( RealPointTestCase, "RealPointTestCase" ); @@ -87,6 +87,10 @@ void PointTestCase::Operators() p6 = p2; p6 = p2 - s; CPPUNIT_ASSERT( p3 == p5 ); CPPUNIT_ASSERT( p4 == p6 ); + p5 = p2; p5 = s + p2; + p6 = p2; p6 = s - p2; + CPPUNIT_ASSERT( p3 == p5 ); + CPPUNIT_ASSERT( p4 == -p6 ); p5 = p2; p5 += s; p6 = p2; p6 -= s; CPPUNIT_ASSERT( p3 == p5 );