From 571c0da8d155514f2fd0e3c6eb6caaba887ac81b Mon Sep 17 00:00:00 2001 From: Manohar Paluri Date: Sun, 13 Sep 2009 04:23:31 +0000 Subject: [PATCH] removed unit test for scalar operator overloading --- cpp/testPoint2.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cpp/testPoint2.cpp b/cpp/testPoint2.cpp index 951fc4777..580b63401 100644 --- a/cpp/testPoint2.cpp +++ b/cpp/testPoint2.cpp @@ -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) ));