| 409 | int64_t expected_rows() const { return num_batches * items_per_batch; } |
| 410 | |
| 411 | std::string ToString() const { |
| 412 | // GTest requires this to be alphanumeric |
| 413 | std::stringstream ss; |
| 414 | ss << (use_threads ? "Threaded" : "Serial") << num_batches << "b" << items_per_batch |
| 415 | << "r"; |
| 416 | return ss.str(); |
| 417 | } |
| 418 | |
| 419 | static std::string ToTestNameString( |
| 420 | const ::testing::TestParamInfo<TestFormatParams>& info) { |
no test coverage detected