| 652 | } |
| 653 | |
| 654 | std::string select_info( |
| 655 | const ::testing::TestParamInfo<std::tuple<int, int, int>> info) { |
| 656 | return "a_" + to_string(get<0>(info.param)) + "_b_" + |
| 657 | to_string(get<1>(info.param)) + "_cond_" + |
| 658 | to_string(get<2>(info.param)); |
| 659 | } |
| 660 | |
| 661 | class JITSelect : public ::testing::TestWithParam<std::tuple<int, int, int>> { |
| 662 | protected: |
nothing calls this directly
no test coverage detected