| 332 | explicit TestData(TestRunner* test_runner) |
| 333 | : test_runner_(test_runner), num_invocations_(0), max_invocations_(-1) {} |
| 334 | void SetMaxInvocations(int max) { max_invocations_ = max; } |
| 335 | void SetField(const std::string& name, const std::string& value) override { |
| 336 | if (name == "load_model") { |
| 337 | test_runner_->LoadModel(value); |