Lines Matching refs:obj1
47 const T obj1; member
52 output << obj1 << " " << relation << " " << obj2; in toString()
61 EXPECT_TRUE(expectation.obj1 == expectation.obj2); in testGamutOfOperators()
62 EXPECT_TRUE(expectation.obj1 <= expectation.obj2); in testGamutOfOperators()
63 EXPECT_TRUE(expectation.obj1 >= expectation.obj2); in testGamutOfOperators()
64 EXPECT_FALSE(expectation.obj1 != expectation.obj2); in testGamutOfOperators()
65 EXPECT_FALSE(expectation.obj1 < expectation.obj2); in testGamutOfOperators()
66 EXPECT_FALSE(expectation.obj1 > expectation.obj2); in testGamutOfOperators()
70 EXPECT_TRUE(expectation.obj1 < expectation.obj2); in testGamutOfOperators()
71 EXPECT_TRUE(expectation.obj1 <= expectation.obj2); in testGamutOfOperators()
72 EXPECT_TRUE(expectation.obj1 != expectation.obj2); in testGamutOfOperators()
73 EXPECT_FALSE(expectation.obj1 > expectation.obj2); in testGamutOfOperators()
74 EXPECT_FALSE(expectation.obj1 >= expectation.obj2); in testGamutOfOperators()
75 EXPECT_FALSE(expectation.obj1 == expectation.obj2); in testGamutOfOperators()