]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/geometry/size.cpp
Test using wxString::ToCDouble() in wxAny.
[wxWidgets.git] / tests / geometry / size.cpp
index abc359178675bc4ccb2aa546ff70c56147871abf..1df26717c7f79fbf7efe911e512aba5e562b84b8 100644 (file)
@@ -43,7 +43,7 @@ private:
 // register in the unnamed registry so that these tests are run by default
 CPPUNIT_TEST_SUITE_REGISTRATION( SizeTestCase );
 
-// 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( SizeTestCase, "SizeTestCase" );
 
 void SizeTestCase::Operators()
@@ -58,6 +58,8 @@ void SizeTestCase::Operators()
     CPPUNIT_ASSERT( s3.GetWidth()==2 && s3.GetHeight()==2 );
     s3 = s1 * 2;
     CPPUNIT_ASSERT( s3.GetWidth()==2 && s3.GetHeight()==4 );
+    s3 = 2 * s1;
+    CPPUNIT_ASSERT( s3.GetWidth()==2 && s3.GetHeight()==4 );
     s3 = s3 / 2;
     CPPUNIT_ASSERT( s3.GetWidth()==1 && s3.GetHeight()==2 );