Home
last modified time | relevance | path

Searched refs:CHECK_CLOSE (Results 1 – 8 of 8) sorted by relevance

/TaskScheduler/ThirdParty/UnitTest++/tests/
H A DTestCompositeTestReporter.cpp146 CHECK_CLOSE(s, r0.testFinishSecondsElapsed, 0.00001f); in TEST_FIXTURE()
150 CHECK_CLOSE(s, r1.testFinishSecondsElapsed, 0.00001f); in TEST_FIXTURE()
167 CHECK_CLOSE(secondsElapsed, r0.summarySecondsElapsed, 0.00001f); in TEST_FIXTURE()
173 CHECK_CLOSE(secondsElapsed, r1.summarySecondsElapsed, 0.00001f); in TEST_FIXTURE()
H A DTestUnitTestPP.cpp36 CHECK_CLOSE(2.0f, 2.001f, 0.01f); in TEST()
37 CHECK_CLOSE(2.001f, 2.0f, 0.01f); in TEST()
H A DTestCheckMacros.cpp148 CHECK_CLOSE (1.0f, 1.001f, 0.01f); in TEST()
162 CHECK_CLOSE (1.0f, 1.1f, 0.01f); in TEST()
178 CHECK_CLOSE (1.0f, 1.1f, 0.01f); line = __LINE__; in TEST()
193 CHECK_CLOSE (1, FunctionWithSideEffects(), 0.1f); in TEST()
204 CHECK_CLOSE (2, FunctionWithSideEffects(), 0.1f); in TEST()
H A DTestTestResults.cpp107 CHECK_CLOSE (0.1234f, reporter.lastFinishedTestTime, 0.0001f); in TEST()
H A DTestDeferredTestReporter.cpp71 CHECK_CLOSE(elapsed, result.timeElapsed, 0.0001f); in TEST_FIXTURE()
H A DTestExceptions.cpp183 CHECK_CLOSE(static_cast<float>(ThrowingFunction()), 1.0001f, 0.1f); line = __LINE__; in SUITE()
190CHECK_CLOSE(static_cast<float>(ThrowingStdExceptionFunction()), 1.0001f, 0.1f); line = __LINE__; in SUITE()
H A DTestChecks.cpp295 CHECK_CLOSE(0.5, 0.5, 0.0001); in TEST()
/TaskScheduler/ThirdParty/UnitTest++/UnitTest++/
H A DCheckMacros.h21 #ifdef CHECK_CLOSE
22 #error UnitTest++ redefines CHECK_CLOSE
78 #define CHECK_CLOSE(expected, actual, tolerance) \ macro