Lines Matching refs:Y
149 # define CPPUNIT_TEST_BASE(X, Y) \ argument
152 bool shouldRun = shouldRunThis(in_name, className, #X, invert, Y, do_progress); \
155 progress(className, #X, ignoring || !shouldRun, !ignoring && Y); \
168 # define CPPUNIT_TEST_BASE(X, Y) \ argument
171 bool shouldRun = shouldRunThis(in_name, className, #X, invert, Y, do_progress); \
174 progress(className, #X, ignoring || !shouldRun, !ignoring && Y); \
211 #define CPPUNIT_ASSERT_EQUAL(X, Y) \ argument
212 if ((X) != (Y)) { \
213 Base::error("CPPUNIT_ASSERT_EQUAL", #X","#Y, __FILE__, __LINE__); \
217 #define CPPUNIT_ASSERT_DOUBLES_EQUAL(X, Y, Z) \ argument
218 if (!equalDoubles((X), (Y), (Z))) { \
219 Base::error("CPPUNIT_ASSERT_DOUBLES_EQUAL", #X","#Y","#Z, __FILE__, __LINE__); \