Lines Matching refs:testing
47 testing::AssertionResult compareValue(T expected, in compareValue()
51 return testing::AssertionFailure() in compareValue()
53 << testing::PrintToString(actual) << "\n\t expected:\t" in compareValue()
54 << testing::PrintToString(expected) << "\t"; in compareValue()
56 return testing::AssertionSuccess(); in compareValue()
59 template testing::AssertionResult compareValue<GLboolean>(GLboolean,
62 template testing::AssertionResult compareValue<GLint>(GLint,
65 template testing::AssertionResult compareValue<GLfloat>(GLfloat,
69 testing::AssertionResult compareGlobalGlBoolean(const GLESv2Dispatch* gl, in compareGlobalGlBoolean()
80 testing::AssertionResult compareGlobalGlInt(const GLESv2Dispatch* gl, in compareGlobalGlInt()
91 testing::AssertionResult compareGlobalGlInt_i(const GLESv2Dispatch* gl, in compareGlobalGlInt_i()
104 testing::AssertionResult compareGlobalGlFloat(const GLESv2Dispatch* gl, in compareGlobalGlFloat()
116 testing::AssertionResult compareVector(const std::vector<T>& expected, in compareVector()
131 << testing::PrintToString(expected[i]) << "\n"; in compareVector()
141 << testing::PrintToString(actual[i]) in compareVector()
143 << testing::PrintToString(expected[i]) << "\n"; in compareVector()
154 return testing::AssertionFailure() in compareVector()
156 << " expected: " << testing::PrintToString(expected) << "\n" in compareVector()
157 << " actual: " << testing::PrintToString(actual) << "\n" in compareVector()
160 return testing::AssertionSuccess(); in compareVector()
163 template testing::AssertionResult compareVector<GLboolean>(
167 template testing::AssertionResult compareVector<GLint>(
171 template testing::AssertionResult compareVector<GLfloat>(
176 testing::AssertionResult compareGlobalGlBooleanv( in compareGlobalGlBooleanv()
191 testing::AssertionResult compareGlobalGlBooleanv_i( in compareGlobalGlBooleanv_i()
206 testing::AssertionResult compareGlobalGlIntv(const GLESv2Dispatch* gl, in compareGlobalGlIntv()
220 testing::AssertionResult compareGlobalGlFloatv( in compareGlobalGlFloatv()