removed unit test for scalar operator overloading

release/4.3a0
Manohar Paluri 2009-09-13 04:23:31 +00:00
parent 68e20eec2c
commit 571c0da8d1
1 changed files with 0 additions and 5 deletions

View File

@ -22,11 +22,6 @@ TEST( Point2, add) {
CHECK(assert_equal( Point2(4,5)+Point2(1,1), Point2(5,6) ));
}
/* ************************************************************************* */
TEST( Point2, addScalar) {
CHECK(assert_equal( Point2(4,5)+1, Point2(5,6) ));
}
/* ************************************************************************* */
TEST( Point2, subtract) {
CHECK(assert_equal( Point2(4,5)-Point2(1,1), Point2(3,4) ));