Home
last modified time | relevance | path

Searched refs:maxTestTimeInMs (Results 1 – 3 of 3) sorted by relevance

/TaskScheduler/ThirdParty/UnitTest++/UnitTest++/
H A DTestRunner.cpp57 void TestRunner::RunTest(TestResults* const result, Test* const curTest, int const maxTestTimeInMs)… in RunTest()
70 …if (maxTestTimeInMs > 0 && testTimeInMs > maxTestTimeInMs && !curTest->m_details.timeConstraintExe… in RunTest()
73 stream << "Global time constraint failed. Expected under " << maxTestTimeInMs << in RunTest()
H A DTestRunner.h32 const Predicate& predicate, int maxTestTimeInMs) const in RunTestsIf() argument
39 RunTest(m_result, curTest, maxTestTimeInMs); in RunTestsIf()
56 void RunTest(TestResults* const result, Test* const curTest, int const maxTestTimeInMs) const;
/TaskScheduler/ThirdParty/UnitTest++/tests/
H A DTestTestRunner.cpp55 const Predicate& predicate, int maxTestTimeInMs) in RunTestsIf()
59 int result = runner.RunTestsIf(list, suiteName, predicate, maxTestTimeInMs); in RunTestsIf()