Lines Matching refs:TestCase
181 class TestCase {
183 TestCase() {} // For std::vector<TestCase>.
184 explicit TestCase(const char* name) : name_(name) {}
275 static bool EnumerateTests(int argc, char** argv, std::vector<TestCase>& testcase_list) {
318 testcase_list.push_back(TestCase(line.c_str()));
335 static void OnTestIterationStartPrint(const std::vector<TestCase>& testcase_list, size_t iteration,
358 static void OnTestEndPrint(const TestCase& testcase, size_t test_id) {
381 static void OnTestEndPrint(const TestCase& testcase, size_t test_id) {
404 static void OnTestIterationEndPrint(const std::vector<TestCase>& testcase_list, size_t /*iteration*/,
541 const std::vector<TestCase>& testcase_list,
712 static void HandleSignals(std::vector<TestCase>& testcase_list,
768 static void ReadChildProcOutput(std::vector<TestCase>& testcase_list,
771 TestCase& testcase = testcase_list[child_proc.testcase_id];
792 static void WaitChildProcs(std::vector<TestCase>& testcase_list,
842 static void CollectChildTestResult(const ChildProcInfo& child_proc, TestCase& testcase) {
882 static bool RunTestInSeparateProc(int argc, char** argv, std::vector<TestCase>& testcase_list,
937 TestCase& testcase = testcase_list[testcase_id];
1199 std::vector<TestCase> testcase_list;