| Index: cc/test/geometry_test_utils.h
|
| ===================================================================
|
| --- cc/test/geometry_test_utils.h (revision 185037)
|
| +++ cc/test/geometry_test_utils.h (working copy)
|
| @@ -40,6 +40,13 @@
|
| EXPECT_EQ((expected).y(), (actual).y()); \
|
| } while (false)
|
|
|
| +#define EXPECT_POINT3F_EQ(expected, actual) \
|
| +do { \
|
| + EXPECT_FLOAT_EQ((expected).x(), (actual).x()); \
|
| + EXPECT_FLOAT_EQ((expected).y(), (actual).y()); \
|
| + EXPECT_FLOAT_EQ((expected).z(), (actual).z()); \
|
| +} while (false)
|
| +
|
| #define EXPECT_VECTOR_EQ(expected, actual) \
|
| do { \
|
| EXPECT_EQ((expected).x(), (actual).x()); \
|
|
|