• Home
  • Raw
  • Download

Lines Matching refs:testing

49 testing::AssertionResult compareValue(T expected,  in compareValue()
53 return testing::AssertionFailure() in compareValue()
55 << testing::PrintToString(actual) << "\n\t expected:\t" in compareValue()
56 << testing::PrintToString(expected) << "\t"; in compareValue()
58 return testing::AssertionSuccess(); in compareValue()
61 template testing::AssertionResult compareValue<GLboolean>(GLboolean,
64 template testing::AssertionResult compareValue<GLint>(GLint,
67 template testing::AssertionResult compareValue<GLfloat>(GLfloat,
71 testing::AssertionResult compareGlobalGlBoolean(const GLESv2Dispatch* gl, in compareGlobalGlBoolean()
82 testing::AssertionResult compareGlobalGlInt(const GLESv2Dispatch* gl, in compareGlobalGlInt()
93 testing::AssertionResult compareGlobalGlInt_i(const GLESv2Dispatch* gl, in compareGlobalGlInt_i()
106 testing::AssertionResult compareGlobalGlFloat(const GLESv2Dispatch* gl, in compareGlobalGlFloat()
118 testing::AssertionResult compareVector(const std::vector<T>& expected, in compareVector()
133 << testing::PrintToString(expected[i]) << "\n"; in compareVector()
143 << testing::PrintToString(actual[i]) in compareVector()
145 << testing::PrintToString(expected[i]) << "\n"; in compareVector()
156 return testing::AssertionFailure() in compareVector()
158 << " expected: " << testing::PrintToString(expected) << "\n" in compareVector()
159 << " actual: " << testing::PrintToString(actual) << "\n" in compareVector()
162 return testing::AssertionSuccess(); in compareVector()
165 template testing::AssertionResult compareVector<GLboolean>(
169 template testing::AssertionResult compareVector<GLint>(
173 template testing::AssertionResult compareVector<GLfloat>(
178 testing::AssertionResult compareGlobalGlBooleanv( in compareGlobalGlBooleanv()
193 testing::AssertionResult compareGlobalGlBooleanv_i( in compareGlobalGlBooleanv_i()
208 testing::AssertionResult compareGlobalGlIntv(const GLESv2Dispatch* gl, in compareGlobalGlIntv()
222 testing::AssertionResult compareGlobalGlFloatv( in compareGlobalGlFloatv()