| 43 | static constexpr int num_rows = 2000; |
| 44 | |
| 45 | static std::string GetString(const int i) { return "Str #" + std::to_string(i); } |
| 46 | static bool GetBool(const int i) { return i % 7 < 3; } |
| 47 | static char GetChar(const int i) { return i & 1 ? 'M' : 'F'; } |
| 48 | static std::array<char, 4> GetCharArray(const int i) { |
no test coverage detected