| 364 | }; |
| 365 | |
| 366 | bool ParseAndRunTests(std::istream* input, TestRunner* test_runner, |
| 367 | int max_invocations) { |
| 368 | TestData test_data(test_runner); |
| 369 | test_data.SetMaxInvocations(max_invocations); |
| 370 | Message::Read(input, &test_data); |
| 371 | return test_runner->IsValid() && test_runner->GetOverallSuccess(); |
| 372 | } |
| 373 | |
| 374 | } // namespace testing |
| 375 | } // namespace tflite |
no test coverage detected